1 2 3 4 5 6 7 8
#![crate_type = "dylib"] extern crate foo; #[no_mangle] pub extern "C" fn bar() { foo::foo(); }