mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 19:20:01 +00:00
9 lines
94 B
Rust
9 lines
94 B
Rust
#[link(name = "test")]
|
|
extern "C" {
|
|
fn foo() -> i32;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {foo();}
|
|
}
|