diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-07-05 16:49:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-07-05 16:49:20 +0000 |
commit | df72bc8a334b4c44db575cc08d83c4dcef74e9e7 (patch) | |
tree | aa9d666026981b32a54db7a64fac270e542c3d07 /csu | |
parent | da0eaa474ca266debfef5d8a46759c2ac7822ea5 (diff) |
(__libc_csu_fini): Pretty printing.
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 |