about summary refs log tree commit diff
path: root/tests/run-make/raw-dylib-link-ordinal/lib.rs
blob: 69f0a5bca46fb101da26b97bfad7561bedc282e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#[link(name = "exporter", kind = "raw-dylib")]
extern "C" {
    #[link_ordinal(13)]
    fn imported_function();
    #[link_ordinal(5)]
    static mut imported_variable: i32;
    #[link_ordinal(9)]
    fn print_imported_variable();
}

pub fn library_function() {
    unsafe {
        imported_function();
        imported_variable = 42;
        print_imported_variable();
        imported_variable = -42;
        print_imported_variable();
    }
}