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