1pub type clock_t = ::c_ulong;
2pub type c_char = u8;
3pub type wchar_t = ::c_int;
4
5pub type c_long = i32;
6pub type c_ulong = u32;
7
8pub 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