int foo(void) { int bar(void); return bar(); } int main(void) { return foo(); } int bar(void) { return 4; }