aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/58_function_redefinition.c
blob: 33f16eea7ff11ba5cd4c06a6f22da18ea58f5d51 (plain)
1
2
3
4
5
6
7
8
9
int f(void)
{
    return 0;
}

int f(void)
{
    return 1;
}