1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
2002-02-17  Andreas Schwab  <schwab@suse.de>

	* reldep7.c: New file.
	* reldep7mod1.c: New file.
	* reldep7mod2.c: New file.
	* Makefile: Add rules to build and run reldep7.
This commit is contained in:
Ulrich Drepper
2002-04-15 17:10:22 +00:00
parent 78575a842b
commit a41d8a74ee
5 changed files with 96 additions and 3 deletions

12
elf/reldep7mod2.c Normal file
View File

@@ -0,0 +1,12 @@
int foo (void) __attribute__ ((weak));
int
foo (void)
{
return 2;
}
int
mod2_bar (void)
{
return foo ();
}