summaryrefslogtreecommitdiff
path: root/tests/conan/example.c
blob: 56d0c7a157b88a11f2809da31c01f313e6ac5f6c (plain)
1
2
3
4
5
6
7
8
9
#define CL_TARGET_OPENCL_VERSION 220
#include <CL/cl.h>

int main(void) {
	cl_platform_id id;
	cl_int result;
	result = 0;
	return result;
}