1 static int static_foo = 1;
2 static int static_bar = 2;
3 
4 /* This padding is just for the benefit of the test harness.  It
5    causes the globals to have different addresses than the functions.  */
6 int dummy[] = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
7 
8 int global_foo = 3;
9 int global_bar = 4;
10 
11 int
12 function_foo ()
13 {
14   return 5;
15 }
16 
17 int
18 function_bar ()
19 {
20   return 6;
21 }
22