summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/c-static-dylib/foo.rs
blob: 25e1ed2a9d32813fc8fc849cc365397e94ad8de8 (plain)
1
2
3
4
5
6
7
8
9
10
#![crate_type = "dylib"]

#[link(name = "cfoo", kind = "static")]
extern {
    fn foo();
}

pub fn rsfoo() {
    unsafe { foo() }
}