mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added abort(3) to <stdlib.h>.
This commit is contained in:
parent
5e75f5c428
commit
e006687645
1 changed files with 1 additions and 1 deletions
|
@ -45,6 +45,7 @@ typedef int div_t, ldiv_t, lldiv_t;
|
||||||
|
|
||||||
/* TODO: WEXITSTATUS, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, WUNTRACED is missing here */
|
/* TODO: WEXITSTATUS, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, WUNTRACED is missing here */
|
||||||
|
|
||||||
|
void abort(void);
|
||||||
int atoi(const char*);
|
int atoi(const char*);
|
||||||
void* calloc(size_t, size_t);
|
void* calloc(size_t, size_t);
|
||||||
void exit(int);
|
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. */
|
/* TODO: These are not implemented in libmaxsi/sortix yet. */
|
||||||
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
|
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
|
||||||
long a64l(const char* s);
|
long a64l(const char* s);
|
||||||
void abort(void);
|
|
||||||
int abs(int value);
|
int abs(int value);
|
||||||
int atexit(void (*function)(void));
|
int atexit(void (*function)(void));
|
||||||
double atof(const char* value);
|
double atof(const char* value);
|
||||||
|
|
Loading…
Add table
Reference in a new issue