code: purgatorio

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