1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03: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
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 ();
}