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