shithub: scc

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