summaryrefslogtreecommitdiff
path: root/test/regression/funct1.c
blob: 1e26803e869980c3158c058e3ac3dd505bd4078e (plain)
1
2
3
4
5
6
7
8
int f() { return 0; }

int g(void) { return f(1); }

int h(x, y) int x, y; { return x + y; }

int k(void) { return h(1); }