shithub: scc

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