1 int global_from_secondary = 9012;
2 int function_from_secondary()
3 {
4     static int local_static = 3456;
5     return 0;
6 }
7 
8 garbage()
9 {
10 	return 0;
11 }
12