blob: 5e0167ace38a9efcc05bc387514129adab7e9b40 [file] [log] [blame]
#![crate_name = "stuff2"]
extern crate other;
extern "C" {
fn c_explore_value() -> i32;
}
pub fn explore(
) -> String {
unsafe {
other::explore(c_explore_value())
}
}