blob: 0bbae8752d7b3ff0da9f3235becc3656a757ffe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#[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();
}
}
|