blob: 8181e6387c5c7ce18de9148d0757cb6ab0f7e7b2 [file] [log] [blame] [edit]
#[link(name = "native-staticlib", kind = "static", modifiers = "-bundle")]
extern "C" {
pub fn native_func();
}
#[no_mangle]
pub extern "C" fn wrapped_func() {
unsafe {
native_func();
}
}