* sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the
[glibc/pb-stable.git] / elf / reldep9mod1.c
blob249a2bae1c2ffc38c63acd54d6caf5afbcf6fd79
1 #include <stdlib.h>
2 void
3 foo (void)
5 exit (0);
8 void
9 __attribute__((destructor))
10 bar (void)
12 static int i;
13 foo ();
14 ++i;
17 void
18 __attribute__((constructor))
19 destr (void)
21 extern void baz (void);
22 baz ();