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

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

pub fn doit() {
    unsafe { foo(); }
}