mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-24 14:41:06 +08:00
[BZ #821] * elf/Makefile: Add rules to build and run unload4 test. * elf/unload4.c: New file. * elf/unload4mod1.c: New file. * elf/unload4mod2.c: New file. * elf/unload4mod3.c: New file. * elf/unload4mod4.c: New file.
11 lines
108 B
C
11 lines
108 B
C
#include <stdio.h>
|
|
|
|
extern int bar (int);
|
|
|
|
int
|
|
foo (int x)
|
|
{
|
|
puts ("in foo");
|
|
return bar (x / 2) + 2;
|
|
}
|