9 lines
130 B
Rust
9 lines
130 B
Rust
#[abi = "cdecl"]
|
|
extern mod rustrt {
|
|
fn get_task_id() -> libc::intptr_t;
|
|
}
|
|
|
|
fn main() {
|
|
let _foo = rustrt::get_task_id;
|
|
}
|