git: purgatorio

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