blob: 9c6d2080ef4d37c990b060efd425bfed41eb13c9 [file] [log] [blame] [edit]
#![crate_type = "rlib"]
#[link(name = "cfoo", kind = "static")]
extern "C" {
fn foo();
}
pub fn rsfoo() {
unsafe { foo() }
}