summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/c-static-dylib/foo.rs
blob: 1e8af4d44040b293cdef26346344bc960703329c (plain)
1
2
3
4
5
6
7
8
9
10
#![crate_type = "dylib"]

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

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