shithub: scc

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