diff options
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 9340201..89712f9 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -102,5 +102,16 @@ void srand(unsigned int seed); +/* TODO implement exit-functions */ +void abort(void) __noreturn; +void _Exit(int) __noreturn; +int atexit(void (*)(void)); +int on_exit(void (*)(int, void*), void*); +void exit(int) __noreturn; +int at_quick_exit (void (*) (void)); +void quick_exit(int) __noreturn; + + + #endif |