git: purgatorio

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