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

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

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