xref: /aosp_15_r20/external/OpenCL-Headers/tests/conan/example.c (revision 3cc257528f335c5672e46865a03b8ee020e5fe2d)
1 #define CL_TARGET_OPENCL_VERSION 220
2 #include <CL/cl.h>
3 
main(void)4 int main(void) {
5 	cl_platform_id id;
6 	cl_int result;
7 	result = 0;
8 	return result;
9 }
10