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