blob: 83c77fe36156d1f7e264a784041e32b2feaa85f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#![crate_name = "nix"]
#![feature(globs)]
#![feature(linkage)]
#![allow(non_camel_case_types)]
extern crate libc;
extern crate core;
// Re-export some libc constants
pub use libc::{c_int, c_void};
#[cfg(unix)]
pub use errno::{SysResult, SysError};
#[cfg(unix)]
pub mod errno;
#[cfg(unix)]
pub mod features;
#[cfg(unix)]
pub mod fcntl;
#[cfg(target_os = "linux")]
pub mod mount;
#[cfg(target_os = "linux")]
pub mod sched;
#[cfg(unix)]
pub mod sys;
#[cfg(target_os = "linux")]
pub mod syscall;
#[cfg(unix)]
pub mod unistd;
|