summaryrefslogtreecommitdiffstats
path: root/test cases/common/47 same file name/prog.c
blob: 1eee6c2f6946ce54005633a71f13379a22927d16 (plain)
1
2
3
4
5
6
int func1(void);
int func2(void);

int main(void) {
    return func1() - func2();
}