1 pub type clock_t = ::c_ulong; 2 pub type c_char = u8; 3 pub type wchar_t = ::c_int; 4 5 pub type c_long = i32; 6 pub type c_ulong = u32; 7 8 pub use crate::unix::newlib::generic::{sigset_t, stat}; 9 10 // the newlib shipped with devkitPPC does not support the following components: 11 // - sockaddr 12 // - AF_INET6 13 // - FIONBIO 14 // - POLL* 15 // - SOL_SOCKET 16 // - MSG_* 17