shithub: scc

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