code: purgatorio

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