aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda_inject/tests/helpers/direct_cuinit.rs
blob: 8341a608ae0016d5e987c54fed81ed9d1c5bb2dc (plain)
1
2
3
4
5
6
7
8
9
#![crate_type = "bin"]

extern "system" {
    fn cuInit(flags: u32) -> u32;
}

fn main() {
    unsafe { cuInit(0) };
}