Added abort(3) to <stdlib.h>.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-04 21:49:03 +01:00
parent 5e75f5c428
commit e006687645
1 changed files with 1 additions and 1 deletions

View File

@ -45,6 +45,7 @@ typedef int div_t, ldiv_t, lldiv_t;
/* TODO: WEXITSTATUS, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, WUNTRACED is missing here */
void abort(void);
int atoi(const char*);
void* calloc(size_t, size_t);
void exit(int);
@ -61,7 +62,6 @@ long long strtoll(const char* restrict, char** restrict, int);
/* TODO: These are not implemented in libmaxsi/sortix yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
long a64l(const char* s);
void abort(void);
int abs(int value);
int atexit(void (*function)(void));
double atof(const char* value);