code: 9ferno

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