]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/neededobj3.c
dlfcn: Remove remnants of caller sensitivity from dlinfo
[thirdparty/glibc.git] / elf / neededobj3.c
1 extern void a_function (void);
2 extern void b_function (void);
3 extern void c_function (void);
4
5 void
6 a_function (void)
7 {
8 b_function ();
9 c_function ();
10 }