mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 11:37:39 +00:00
11 lines
114 B
Rust
11 lines
114 B
Rust
![]() |
#[crate_type = "rlib"];
|
||
|
|
||
|
#[link(name = "cfoo")]
|
||
|
extern {
|
||
|
fn foo();
|
||
|
}
|
||
|
|
||
|
pub fn rsfoo() {
|
||
|
unsafe { foo() }
|
||
|
}
|