1 2 3 4 5 6 7 8 9 10 11
#![crate_type = "rlib"] extern "C" { fn bar(); } pub fn foo() { unsafe { bar(); } }