about summary refs log tree commit diff
path: root/tests/run-make/raw-dylib-custom-dlltool/lib.rs
blob: db1d645050388285ec2607b908d636d98103fb6f (plain)
1
2
3
4
5
6
7
8
9
10
#[link(name = "extern_1", kind = "raw-dylib")]
extern "C" {
    fn extern_fn_1();
}

pub fn library_function() {
    unsafe {
        extern_fn_1();
    }
}