summaryrefslogtreecommitdiff
path: root/test/manycalls.c
blob: bfcc775029734249f058283da05ab8b8ec48e32d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
int one() {
    return 1;
}

int two() {
    return 2;
}

int three() {
    return 3;
}

int four() {
    return 4;
}

int main() {
    int d;
    int a = one();
    int b = two();
    int c = three();
    d = four();
    return d;
}