ZLUDA/zluda_inject/tests/helpers/do_cuinit.rs

11 lines
182 B
Rust
Raw Permalink Normal View History

2021-12-02 23:47:37 +01:00
#![crate_type = "cdylib"]
extern "system" {
fn cuInit(flags: u32) -> u32;
}
#[no_mangle]
unsafe extern "system" fn do_cuinit(flags: u32) -> u32 {
cuInit(flags)
}