1 2 3 4 5 6 7 8 9 10 11 12
#![crate_type = "rlib"] extern crate lib1; #[link(name = "bar", kind = "static")] extern "C" { fn foo() -> i32; } pub fn foo2() -> i32 { unsafe { foo() } }