aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/function_call.c
blob: 8defdaf829c391093af903f1f9d9288ce5920bd7 (plain)
1
2
3
4
5
6
7
8
9
int f(int a, int b, int c, int d, int f)
{
    return a + b + c + d + f;
}

int main()
{
    return f(1, 2, 3, 4, 5);
}