diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-10-14 23:00:24 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-10-14 23:00:24 -0400 |
commit | f753049a50132a23849ef89a8af5ff86ad595c25 (patch) | |
tree | 5dbc29f298f9907948da2f9451947ebbb7b3e453 /src/exit/atexit.c | |
parent | 8e8ddeff7eee6294e24c0a9a29053164f990f1b3 (diff) | |
download | musl-f753049a50132a23849ef89a8af5ff86ad595c25.tar.gz musl-f753049a50132a23849ef89a8af5ff86ad595c25.tar.xz musl-f753049a50132a23849ef89a8af5ff86ad595c25.zip |
simplify atexit and fflush-on-exit handling
Diffstat (limited to 'src/exit/atexit.c')
-rw-r--r-- | src/exit/atexit.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/exit/atexit.c b/src/exit/atexit.c index 49c060e6..6f00e374 100644 --- a/src/exit/atexit.c +++ b/src/exit/atexit.c @@ -12,18 +12,15 @@ static struct fl void (*f[COUNT])(void); } builtin, *head; -static int run_atexit_functions(void) +void __funcs_on_exit() { int i; for (; head; head=head->next) { for (i=COUNT-1; i>=0 && !head->f[i]; i--); for (; i>=0; i--) head->f[i](); } - return 0; } -int (*const __funcs_on_exit)(void) = run_atexit_functions; - int atexit(void (*func)(void)) { static int lock; |