1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +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

13
elf/dblloadmod2.c Normal file
View File

@ -0,0 +1,13 @@
extern int bar (void);
int
baz (void)
{
return -42;
}
int
xyzzy (void)
{
return 10 + bar ();
}