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