code: 9ferno

ref: cbf559e618ec9c384302bf6004ad6101e860109a
dir: /os/boot.original/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);
}