blob: d2023920fb4164e47e17b2f9b404826174291c91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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;
}
|