summaryrefslogtreecommitdiff
path: root/tests/library/testlib.c
blob: f8e457ada4e5ebf15fb8cfe739c95572c0ab7465 (plain)
1
2
3
4
5
int multiply_by_two( int a );

int multiply_by_two( int a ) {
	return a * 2;
}