code: 9ferno

ref: e5527913576a5a62ff0e5c8cb5b9cf6688095f65
dir: /os/boot/puma/sum.c/

View raw version
int
sum(int a, int b, int c)
{
	return a+b+c;
}

void
main(void)
{
	int s;

	s = sum(1, 2, 3);
}