summaryrefslogtreecommitdiff
path: root/tests/library/testlib.c
blob: b240819f8d7aa859108c5dbbc6d815231a58ba18 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef _WIN32
#define DLLEXPORT __declspec( dllexport )
#else
#define DLLEXPORT
#endif

DLLEXPORT int multiply_by_two( int a );

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