shithub: scc

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