(__libc_csu_fini): Pretty printing.

This commit is contained in:
Ulrich Drepper 2005-07-05 16:49:20 +00:00
parent da0eaa474c
commit df72bc8a33
1 changed files with 2 additions and 2 deletions

View File

@ -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