mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-12 10:48:53 +03:00
11 lines
163 B
Rust
11 lines
163 B
Rust
#![crate_type = "bin"]
|
|
|
|
#[link(name = "do_cuinit")]
|
|
extern "system" {
|
|
fn do_cuinit(flags: u32) -> u32;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { do_cuinit(0) };
|
|
}
|