shithub: scc

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