rust/tests/run-make-fulldeps/c-static-rlib/foo.rs
2023-01-11 09:32:08 +00:00

11 lines
135 B
Rust

#![crate_type = "rlib"]
#[link(name = "cfoo", kind = "static")]
extern "C" {
fn foo();
}
pub fn rsfoo() {
unsafe { foo() }
}