.
[glibc.git] / elf / sofini.c
blobe44041b5ec5a53b4a1f6e7e84e9c93b47ee780b4
1 /* Finalizer module for ELF shared C library. This provides terminating
2 null pointer words in the `.ctors' and `.dtors' sections. */
4 static void (*const __CTOR_END__[1]) (void)
5 __attribute__ ((unused, section (".ctors")))
6 = { 0 };
7 static void (*const __DTOR_END__[1]) (void)
8 __attribute__ ((unused, section (".dtors")))
9 = { 0 };