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

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

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