mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 18:42:27 +00:00
11 lines
136 B
Rust
11 lines
136 B
Rust
#![crate_type = "dylib"]
|
|
|
|
#[link(name = "cfoo", kind = "static")]
|
|
extern "C" {
|
|
fn foo();
|
|
}
|
|
|
|
pub fn rsfoo() {
|
|
unsafe { foo() }
|
|
}
|