Object for unload testing.

This commit is contained in:
Ulrich Drepper 2000-10-24 16:59:10 +00:00
parent 2c88f87251
commit ef044fc8bf
1 changed files with 11 additions and 0 deletions

11
elf/neededobj4.c Normal file
View 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 ();
}