shithub: purgatorio

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