Add prototype for _Exit() function from C99.

This commit is contained in:
Stephen Heumann 2018-09-09 23:24:47 -05:00
parent 3352e874dd
commit e8d89c9b39

View File

@ -48,6 +48,7 @@ void *calloc(size_t, size_t);
div_t div(int, int);
void exit(int);
void _exit(int);
void _Exit(int);
void free(void *);
char *getenv(const char *);
long labs(long);