1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

(__libc_csu_fini): Pretty printing.

This commit is contained in:
Ulrich Drepper
2005-07-05 16:49:20 +00:00
parent da0eaa474c
commit df72bc8a33

View File

@ -93,11 +93,11 @@ void
__libc_csu_fini (void) __libc_csu_fini (void)
{ {
#ifndef LIBC_NONSHARED #ifndef LIBC_NONSHARED
#ifdef HAVE_INITFINI_ARRAY # ifdef HAVE_INITFINI_ARRAY
size_t i = __fini_array_end - __fini_array_start; size_t i = __fini_array_end - __fini_array_start;
while (i-- > 0) while (i-- > 0)
(*__fini_array_start [i]) (); (*__fini_array_start [i]) ();
#endif # endif
_fini (); _fini ();
#endif #endif