code: 9ferno

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