mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 22:24:47 +00:00
11 lines
157 B
Rust
11 lines
157 B
Rust
#[link(name = "extern_1", kind = "raw-dylib")]
|
|
extern "C" {
|
|
fn extern_fn_1();
|
|
}
|
|
|
|
pub fn library_function() {
|
|
unsafe {
|
|
extern_fn_1();
|
|
}
|
|
}
|