blob: 891c47d61de977b5e64e8087a8806aac1a3935f5 [file] [log] [blame]
#![crate_type = "rlib"]
#[link(name = "foo", kind = "static")]
extern {
fn foo();
}
pub fn doit() {
unsafe { foo(); }
}