summaryrefslogtreecommitdiff
path: root/os/boot/puma/sum.c
blob: ce7e33fda9bbe4ebf55566c492da1774635e0c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int
sum(int a, int b, int c)
{
	return a+b+c;
}

void
main(void)
{
	int s;

	s = sum(1, 2, 3);
}