aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/51 same file name/prog.c
blob: 344128892c2377f83c2c6688c9026c833afbe850 (plain)
1
2
3
4
5
6
int func1();
int func2();

int main(int argc, char **argv) {
    return func1() - func2();
}