1 #include <stdio.h> 2 3 extern void foo1(); 4 extern void foo3(); 5 6 struct foo_type; 7 8 int main() 9 { 10 struct foo_type *x; 11 12 printf("In main.\n"); 13 foo1(); 14 foo3(); 15 return 0; 16 } 17