1 #include <stdio.h> 2 3 extern void foo (); 4 extern void foobar (); 5 6 void foo()7 foo () 8 { 9 printf ("strong foo\n"); 10 } 11 12 void foobar()13 foobar () 14 { 15 foo (); 16 } 17