glibc/elf/nodel2mod1.c

18 lines
131 B
C
Raw Permalink Normal View History

2003-01-12 08:52:53 +01:00
#include <stdlib.h>
void
foo (void)
{
exit (0);
}
void
__attribute__((destructor))
bar (void)
{
foo ();
}
void
baz (void)
{
}