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