1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[cfg(unix)]
mod unix_pipe;
#[cfg(target_os = "linux")]
mod linux;
#[cfg(not(target_os = "linux"))]
mod unsupported;
#[cfg(target_os = "linux")]
pub use self::linux::*;
#[cfg(not(target_os = "linux"))]
pub use self::unsupported::*;