1 //! Xous C type definitions 2 3 use crate::prelude::*; 4 5 pub type intmax_t = i64; 6 pub type uintmax_t = u64; 7 8 pub type size_t = usize; 9 pub type ptrdiff_t = isize; 10 pub type intptr_t = isize; 11 pub type uintptr_t = usize; 12 pub type ssize_t = isize; 13 14 pub type off_t = i64; 15 pub type wchar_t = u32; 16 17 pub const INT_MIN: c_int = -2147483648; 18 pub const INT_MAX: c_int = 2147483647; 19