brintos

brintos / linux-shallow public Read only

0
0
Text · 374 B · 4cfcef9 Raw
17 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <opencsd/c_api/opencsd_c_api.h>3 4/*5 * Check OpenCSD library version is sufficient to provide required features6 */7#define OCSD_MIN_VER ((1 << 16) | (2 << 8) | (1))8#if !defined(OCSD_VER_NUM) || (OCSD_VER_NUM < OCSD_MIN_VER)9#error "OpenCSD >= 1.2.1 is required"10#endif11 12int main(void)13{14	(void)ocsd_get_version();15	return 0;16}17