1
0
Fork 0
forked from nuttx/nuttx-update

_Exit() is the stdlib.h equivalent of unistd.h's _exit()

This commit is contained in:
Gregory Nutt 2013-04-18 16:13:38 -06:00
parent fc4c714523
commit 7be1a9622a

View file

@ -140,6 +140,11 @@ int atexit(CODE void (*func)(void));
int on_exit(CODE void (*func)(int, FAR void *), FAR void *arg);
#endif
/* _Exit() is a stdlib.h equivalent to the unistd.h _exit() function */
void _exit(int status); /* See unistd.h */
#define _Exit(s) _exit(s)
/* String to binary conversions */
long strtol(const char *, char **, int);