shithub: scc

ref: 1d36866ee5505eec6d0310522e5ba8879d44f5bd
dir: /tests/cc/execute/0118-voidmain.c/

View raw version
int main(void);
int f();

int
f(int a)
{
	return a;
}

int
main()
{
	return f(0);
}