aboutsummaryrefslogtreecommitdiff
path: root/test/sam/examples/comment-functions.in
blob: 49c24527b10f680c9b64cceeb5e4fe7067d20aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
static int addi(int a, int b) {
	return a+b;
}

static long addl(long a, long b) {
	return a+b;
}

static int muli(int a, int b) {
	return a*b;
}

static long mull(long a, long b) {
	return a*b;
}