mirror of
https://mirrors.tuna.tsinghua.edu.cn/git/glibc.git
synced 2026-01-12 00:20:19 +08: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.
13 lines
112 B
C
13 lines
112 B
C
int foo (void) __attribute__ ((weak));
|
|
int
|
|
foo (void)
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
int
|
|
mod2_bar (void)
|
|
{
|
|
return foo ();
|
|
}
|