rust/tests/run-make/c-static-dylib/foo.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
136 B
Rust
Raw Normal View History

#![crate_type = "dylib"]
2016-12-06 00:31:05 +00:00
#[link(name = "cfoo", kind = "static")]
2020-09-01 21:12:52 +00:00
extern "C" {
fn foo();
}
pub fn rsfoo() {
unsafe { foo() }
}