mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +00:00
12 lines
253 B
Rust
12 lines
253 B
Rust
![]() |
#![feature(raw_dylib_elf)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
#[link(name = "library", kind = "raw-dylib")]
|
||
|
unsafe extern "C" {
|
||
|
safe fn this_is_a_library_function() -> core::ffi::c_int;
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
println!("{}", this_is_a_library_function())
|
||
|
}
|