blob: 0bbae8752d7b3ff0da9f3235becc3656a757ffe0 [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();
}
}