1 pub type c_long = i32; 2 pub type c_ulong = u32; 3 pub type c_char = i8; 4 pub type __cpu_simple_lock_nv_t = ::c_uchar; 5 6 // should be pub(crate), but that requires Rust 1.18.0 7 cfg_if! { 8 if #[cfg(libc_const_size_of)] { 9 #[doc(hidden)] 10 pub const _ALIGNBYTES: usize = ::mem::size_of::<::c_int>() - 1; 11 } else { 12 #[doc(hidden)] 13 pub const _ALIGNBYTES: usize = 4 - 1; 14 } 15 } 16