1 2 3 4 5 6 7 8 9
int func(void); static int duplicate_func(void) { return -4; } int main(void) { return duplicate_func() + func(); }