mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-07-13 04:31:27 +00:00
10 lines
163 B
Rust
10 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) };
|
|
}
|