mach 0.0.2

A rust interface to the Mach 3.0 kernel that underlies OSX.
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]

extern crate libc;

pub mod kern_return;
pub mod message;
pub mod port;
pub mod structs;
pub mod task;
pub mod thread_act;
pub mod thread_status;
pub mod traps;
pub mod types;
pub mod vm_types;

#[test]
fn it_works() {
}