7 lines
98 B
Rust
7 lines
98 B
Rust
#![crate_type = "dylib"]
|
|
|
|
#[link(name = "foo", kind = "static")]
|
|
extern "C" {
|
|
pub fn foo();
|
|
}
|