mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 03:50:07 +00:00
10 lines
355 B
C
10 lines
355 B
C
|
/* 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 };
|