1#include <stdlib.h>
2void
3foo (void)
4{
5 exit (status: 0);
6}
7
8void
9__attribute__((destructor))
10bar (void)
11{
12 foo ();
13}
14
15void
16__attribute__((constructor))
17destr (void)
18{
19 extern void baz (void);
20 baz ();
21}
22

source code of glibc/elf/reldep9mod1.c