tinycc/tests/tests2/58_function_redefinition.c

10 lines
61 B
C

int f(void)
{
return 0;
}
int f(void)
{
return 1;
}