shithub: scc

ref: 39efe97b2fff40d0e17fab3d0ddbc58778aca1eb
dir: /tests/cc/execute/0021-intfunc.c/

View raw version
int
foo(int a, int b)
{
	return 2 + a - b;
}

int
main()
{
	return foo(1, 3);
}