1 #include <stdio.h> 2 3 extern int bar (int); 4 5 int foo(int x)6 foo (int x) 7 { 8 puts ("in foo"); 9 return bar (x / 2) + 2; 10 } 11