DEBSOURCES
Skip Quicknav
sources / rustc / 1.89.0%2Bdfsg1-1 / tests / run-make / raw-dylib-custom-dlltool / lib.rs
12345678910
#[link(name = "extern_1", kind = "raw-dylib")] extern "C" { fn extern_fn_1(); } pub fn library_function() { unsafe { extern_fn_1(); } }