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