1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#![no_std] pub use libc::*; mod util; pub mod boxed; pub mod stdio; pub mod string; extern "C" { pub fn strndup(cs: *const libc::c_char, n: libc::size_t) -> *mut libc::c_char; // pub static stdin: *mut libc::FILE; pub static stdout: *mut libc::FILE; pub static stderr: *mut libc::FILE; }