chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.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 }