rust/tests/run-make/interdependent-c-libraries/foo.rs

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

13 lines
146 B
Rust
Raw Permalink Normal View History

#![crate_type = "rlib"]
2016-12-05 18:31:05 -06:00
#[link(name = "foo", kind = "static")]
2020-09-01 16:12:52 -05:00
extern "C" {
fn foo();
}
pub fn doit() {
2020-09-01 16:12:52 -05:00
unsafe {
foo();
}
}