1 extern int foo (void); 2 extern int call_me (void); 3 4 int call_me(void)5 call_me (void) 6 { 7 return foo () - 42; 8 } 9