blob: 69d1668d4f643b901d11fcec0e7aa09c7806fe18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![crate_type = "rlib"]
#![feature(static_nobundle)]
#[link(name = "aaa", kind = "static-nobundle")]
extern "C" {
pub fn native_func();
}
pub fn wrapped_func() {
unsafe {
native_func();
}
}
|