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