mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
18 lines
169 B
C
18 lines
169 B
C
|
static int static_foo = 1;
|
||
|
static int static_bar = 2;
|
||
|
|
||
|
int global_foo = 3;
|
||
|
int global_bar = 4;
|
||
|
|
||
|
int
|
||
|
function_foo ()
|
||
|
{
|
||
|
return 5;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
function_bar ()
|
||
|
{
|
||
|
return 6;
|
||
|
}
|