open_cl_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(clippy::all)]
5// NOTE: warn(improper_ctypes) can be removed if 128-bit integers get a stable ABI
6#![allow(improper_ctypes)]
7
8#[link(name = "OpenCL")]
9#[cfg(target_os = "linux")]
10extern "C" {}
11
12#[link(name = "OpenCL", kind = "framework")]
13#[cfg(target_os = "macos")]
14extern "C" {}
15
16include!("../bindgen/opencl_bindings.rs");