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