2
0
mirror of git://sourceware.org/git/glibc.git synced 2025-04-24 14:41:06 +08:00

Object for unload testing.

This commit is contained in:
Ulrich Drepper 2000-10-24 16:59:10 +00:00
parent 2c88f87251
commit ef044fc8bf

11
elf/neededobj4.c Normal file

@ -0,0 +1,11 @@
extern void a_function (void);
extern void b_function (void);
extern void c_function (void);
void
d_function (void)
{
a_function ();
b_function ();
c_function ();
}