blob: 5cbf8093c5c3cbe05191a07731f54c9b78423efc (
plain)
1
2
3
4
5
6
7
8
9
|
#![crate_name = "anonexternmod"]
#![feature(rustc_private)]
extern crate libc;
#[link(name = "rust_test_helpers", kind = "static")]
extern "C" {
pub fn rust_get_test_int() -> libc::intptr_t;
}
|