rust-most/src/main.rs
2019-12-06 02:01:59 -08:00

10 lines
164 B
Rust

#[allow(non_camel_case_types, non_snake_case, dead_code)]
mod ffi;
fn main() {
println!("Printing most usage:");
unsafe {
ffi::most_usage();
}
}