glibc/elf/reldep9mod1.c
Adhemerval Zanella f60510ddaf elf: Remove unused variables in tests
Checked on x86_64-linux-gnu and i686-linux-gnu.
2022-03-31 08:59:23 -03:00

22 lines
199 B
C

#include <stdlib.h>
void
foo (void)
{
exit (0);
}
void
__attribute__((destructor))
bar (void)
{
foo ();
}
void
__attribute__((constructor))
destr (void)
{
extern void baz (void);
baz ();
}