1 //! This module corresponds to `mach/i386/boolean.h`.
2 
3 #[cfg(target_arch = "x86_64")]
4 pub type boolean_t = ::libc::c_uint;
5 
6 #[cfg(not(target_arch = "x86_64"))]
7 pub type boolean_t = ::libc::c_int;
8