mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
15 lines
165 B
C
15 lines
165 B
C
|
extern __attribute__ ((visibility("hidden"))) int fooblah;
|
||
|
|
||
|
static void
|
||
|
do_nothing (int param)
|
||
|
{
|
||
|
if (param)
|
||
|
fooblah = 1;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
bar ()
|
||
|
{
|
||
|
do_nothing (0);
|
||
|
}
|