blob: 64b2c014b54fe8d26d3b5f30493f902507b10698 [file] [log] [blame] [edit]
#![forbid(unsafe_op_in_unsafe_fn)]
cfg_select! {
unix => {
mod unix;
pub use unix::{AnonPipe, pipe};
}
windows => {
mod windows;
pub use windows::{AnonPipe, pipe};
}
target_os = "motor" => {
mod motor;
pub use motor::{AnonPipe, pipe};
}
_ => {
mod unsupported;
pub use unsupported::{AnonPipe, pipe};
}
}