mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
20 lines
288 B
Rust
20 lines
288 B
Rust
#[link(name = "extern_1", kind = "raw-dylib")]
|
|
extern {
|
|
fn extern_fn_1();
|
|
fn extern_fn_2();
|
|
}
|
|
|
|
#[inline]
|
|
pub fn inline_library_function() {
|
|
unsafe {
|
|
extern_fn_1();
|
|
extern_fn_2();
|
|
}
|
|
}
|
|
|
|
pub fn library_function() {
|
|
unsafe {
|
|
extern_fn_2();
|
|
}
|
|
}
|