blob: 1046a0e78a2306522805b43a28c1bfa443376084 [file] [log] [blame]
#[abi = "cdecl"]
extern mod rustrt {
#[legacy_exports];
fn get_task_id() -> libc::intptr_t;
}
fn main() {
let _foo = rustrt::get_task_id;
}