diff options
Diffstat (limited to 'libc/stdlib/atexit.c')
| -rw-r--r-- | libc/stdlib/atexit.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index 4cec3f320..3a8a7be14 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -320,7 +320,9 @@ extern void (*__rtld_fini)(void);  /*   * Normal program termination   */ -void exit(int rv) +#undef exit +#undef __exit +void attribute_hidden __exit(int rv)  {  	/* Perform exit-specific cleanup (atexit and on_exit) */  	LOCK; @@ -343,6 +345,7 @@ void exit(int rv)  	if (_stdio_term)   	    _stdio_term(); -	_exit(rv); +	_exit_internal(rv);  } +strong_alias(__exit,exit)  #endif | 
