shithub: purgatorio

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