shithub: scc

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