1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
2001-09-05  Ulrich Drepper  <drepper@redhat.com>

	* elf/Makefile: Add rules to build new tests.  Don't run them yet since
	they both fail.
	* elf/dblload.c: New file.
	* elf/dblloadmod1.c: New file.
	* elf/dblloadmod2.c: New file.
	* elf/dblloadmod3.c: New file.
	* elf/dblunload.c: New file.
This commit is contained in:
Ulrich Drepper
2001-09-06 01:03:05 +00:00
parent 9cd9ea1068
commit 3fac000158
7 changed files with 157 additions and 4 deletions

7
elf/dblloadmod3.c Normal file
View File

@ -0,0 +1,7 @@
extern int baz (void);
int
bar (void)
{
return 32 + baz ();
}