1 #include <stdio.h> 2 foo(void)3 static int foo (void) 4 { 5 return 1; 6 } 7 8 int main(void)9 main(void) 10 { 11 return foo(); 12 } 13