mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-26 05:49:15 +00:00
10 lines
83 B
Rust
10 lines
83 B
Rust
extern "C" {
|
|
pub fn foo();
|
|
}
|
|
|
|
pub fn f() {
|
|
unsafe {
|
|
foo();
|
|
}
|
|
}
|