mach2 0.4.1

A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.
Documentation
//! 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;