mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 09:11:27 +00:00
11 lines
118 B
Rust
11 lines
118 B
Rust
#![crate_type = "rlib"]
|
|
|
|
#[link(name = "cfoo")]
|
|
extern "C" {
|
|
fn foo();
|
|
}
|
|
|
|
pub fn rsfoo() {
|
|
unsafe { foo() }
|
|
}
|