1 2 3 4 5 6 7 8 9
#![crate_type = "bin"] extern "system" { fn cuInit(flags: u32) -> u32; } fn main() { unsafe { cuInit(0) }; }