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
#![deny(missing_docs)]
#[cfg(target_os = "linux")]
#[macro_use]
extern crate bitflags;
extern crate libc;
#[cfg(feature = "with-serde")]
extern crate serde;
#[cfg(feature = "with-serde")]
extern crate serde_derive;
#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "linux")]
pub use linux::*;
#[cfg(unix)]
mod unix;
#[cfg(unix)]
pub use unix::*;
pub mod errno;
pub mod fam;
pub mod rand;
pub mod syscall;
pub mod tempfile;