summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: e2ad38b1f74b03039ae587957d252df666a33621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![crate_name = "nix"]
#![feature(globs)]

extern crate libc;

pub use errno::{SysResult, SysError};

pub mod errno;
pub mod fcntl;
pub mod mount;
pub mod sched;
pub mod sys;
pub mod syscall;
pub mod unistd;