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