mach_sys/
boolean.rs

1//! This module corresponds to `mach/i386/boolean.h`.
2
3#![allow(unused_imports)]
4
5use crate::ffi::{c_uint, c_int};
6
7#[cfg(target_arch = "x86_64")]
8pub type boolean_t = c_uint;
9
10#[cfg(not(target_arch = "x86_64"))]
11pub type boolean_t = c_int;
12