shithub: scc

ref: 41ed50efbfd832c5c4efd7615ac46c798d6ce76d
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);
}