1int global_var = 4;
2int other_var = 2;
3
4extern int function (void);
5
6int
7main ()
8{
9  return function ();
10}
11