glibc/elf/reldep7mod1.c

13 lines
112 B
C

int foo (void) __attribute__ ((weak));
int
foo (void)
{
return 1;
}
int
mod1_bar (void)
{
return foo ();
}