Skip to content
Snippets Groups Projects
Commit 7be1a962 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

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

parent fc4c7145
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment