blob: e7c0521fe2fdd2f1dc36167e53f3e602ed7a0f5c [file] [log] [blame]
#![crate_name = "stuff"]
extern "C" {
fn c_value() -> i32;
}
pub fn explore() -> String {
unsafe {
format!("library{}string", c_value())
}
}