mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
14 lines
140 B
C
14 lines
140 B
C
|
extern int foo (void) __attribute__((weak,__visibility__ ("hidden")));
|
||
|
|
||
|
int
|
||
|
foo (void)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
bar (void)
|
||
|
{
|
||
|
return foo ();
|
||
|
}
|