diff options
Diffstat (limited to 'csu')
-rw-r--r-- | csu/elf-init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csu/elf-init.c b/csu/elf-init.c index 7ac79446d6..145eb3ea6b 100644 --- a/csu/elf-init.c +++ b/csu/elf-init.c @@ -93,11 +93,11 @@ void __libc_csu_fini (void) { #ifndef LIBC_NONSHARED -#ifdef HAVE_INITFINI_ARRAY +# ifdef HAVE_INITFINI_ARRAY size_t i = __fini_array_end - __fini_array_start; while (i-- > 0) (*__fini_array_start [i]) (); -#endif +# endif _fini (); #endif |