summaryrefslogtreecommitdiff
path: root/elf/sofini.c
blob: e44041b5ec5a53b4a1f6e7e84e9c93b47ee780b4 (plain)
1
2
3
4
5
6
7
8
9
/* Finalizer module for ELF shared C library.  This provides terminating
   null pointer words in the `.ctors' and `.dtors' sections.  */

static void (*const __CTOR_END__[1]) (void)
     __attribute__ ((unused, section (".ctors")))
     = { 0 };
static void (*const __DTOR_END__[1]) (void)
     __attribute__ ((unused, section (".dtors")))
     = { 0 };