rust/tests/run-make/native-link-modifier-bundle/non-bundled.rs

12 lines
209 B
Rust

#[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();
}
}