shithub: scc

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