diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-08 02:35:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-08 02:35:30 +0000 |
commit | 270bd86b4f1ed78013a1c7839732e21ab9774472 (patch) | |
tree | 1ba173b4c1bd30d0804a496cef078986ae04ff05 /libc/stdlib/atexit.c | |
parent | 073cd03a2c5b0eb6c0872622f840f4a9724a9b04 (diff) |
punt _DL_FINI_CRT_COMPAT option now that 0.9.28 has been released
Diffstat (limited to 'libc/stdlib/atexit.c')
-rw-r--r-- | libc/stdlib/atexit.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index c70318148..1962c1b63 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -224,10 +224,6 @@ extern void (*__app_fini)(void); extern void (*__rtld_fini)(void); -#ifdef _DL_FINI_CRT_COMPAT -extern void (*__dl_fini)(void); -#endif - /* * Normal program termination */ @@ -244,13 +240,8 @@ void exit(int rv) if (__app_fini != NULL) (__app_fini)(); #endif -#ifndef _DL_FINI_CRT_COMPAT if (__rtld_fini != NULL) (__rtld_fini)(); -#else - if (__dl_fini != NULL) - (__dl_fini)(); -#endif /* If we are using stdio, try to shut it down. At the very least, * this will attempt to commit all buffered writes. It may also |