shithub: scc

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