1 extern int a;
2 
3 extern int foo (void);
4 
5 int
foo(void)6 foo (void)
7 {
8   return a;
9 }
10