1 #include <stdio.h> 2 3 extern int foo2(); 4 5 int 6 foo1() 7 { 8 return 0; 9 } 10 11 int 12 bar1() 13 { 14 return 0; 15 } 16 17 int 18 main() 19 { 20 return 0; 21 } 22