[dc5195]: / test / func-call.c  Maximize  Restore  History

Download this file

8 lines (7 with data), 111 Bytes

1
2
3
4
5
6
7
int f1(const char* __s) ;
static int f2() {
	return f1("test");
}
static int f3(int i) {
	return f1("test");
}