forked from nuttx/nuttx-update
_Exit() is the stdlib.h equivalent of unistd.h's _exit()
This commit is contained in:
parent
fc4c714523
commit
7be1a9622a
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue