6_9_redefinition_function.c (89B)
1 int f(void) { return 1; } 2 int f(void) { return 2; } 3 4 int test_main(void) { return f(); }