summaryrefslogtreecommitdiffstats
path: root/tools/build/feature/test-libopencsd.c
blob: 52c790b0317b1ee6506c2bfc5b3bb86745213539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: GPL-2.0
#include <opencsd/c_api/opencsd_c_api.h>

/*
 * Check OpenCSD library version is sufficient to provide required features
 */
#define OCSD_MIN_VER ((1 << 16) | (0 << 8) | (0))
#if !defined(OCSD_VER_NUM) || (OCSD_VER_NUM < OCSD_MIN_VER)
#error "OpenCSD >= 1.0.0 is required"
#endif

int main(void)
{
	(void)ocsd_get_version();
	return 0;
}