2012-01-06 00:20:08 +01:00

14 lines
140 B
C

extern int foo (void) __attribute__((weak,__visibility__ ("hidden")));
int
foo (void)
{
return 1;
}
int
bar (void)
{
return foo ();
}