rust/src/test/auxiliary/anon-extern-mod-cross-crate-1.rs

10 lines
162 B
Rust
Raw Normal View History

#[abi = "cdecl"];
#[link_name = "rustrt"];
#[link(name = "anonexternmod",
vers = "0.1")];
#[crate_type = "lib"];
extern {
fn last_os_error() -> ~str;
}