1 #include "stub.h" 2 foo()3 static void foo() { printf("foo\n"); } 4 main()5 int main() { 6 foo(); 7 return 0; 8 } 9