2012-03-26 21:18:29 +02:00

14 lines
140 B
C

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