glibc/elf/unload4mod1.c
Roland McGrath 70b0f31ecf 2005-03-08 Jakub Jelinek <jakub@redhat.com>
[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.
2005-04-06 02:51:35 +00:00

11 lines
108 B
C

#include <stdio.h>
extern int bar (int);
int
foo (int x)
{
puts ("in foo");
return bar (x / 2) + 2;
}