a41d8a74ee
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 ();
|
|
}
|