blob: 25e1ed2a9d32813fc8fc849cc365397e94ad8de8 [file] [log] [blame]
#![crate_type = "dylib"]
#[link(name = "cfoo", kind = "static")]
extern {
fn foo();
}
pub fn rsfoo() {
unsafe { foo() }
}