shithub: scc

ref: 569af2fa5e0dfaa663e64f852fc50ecddb885af3
dir: /tests/execute/0021-intfunc.c/

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

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