diff options
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 12fce40f9b..675ed768c6 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -54,6 +54,8 @@ extern int __add_to_environ (const char *name, const char *value, extern void _quicksort (void *const pbase, size_t total_elems, size_t size, __compar_fn_t cmp); +extern int __on_exit (void (*__func) (int __status, void *__arg), void *__arg); + extern int __cxa_atexit (void (*func) (void *), void *arg, void *d); extern void __cxa_finalize (void *d); |