std/sys/anonymous_pipe/
mod.rs

1#![forbid(unsafe_op_in_unsafe_fn)]
2
3cfg_select! {
4    unix => {
5        mod unix;
6        pub use unix::{AnonPipe, pipe};
7    }
8    windows => {
9        mod windows;
10        pub use windows::{AnonPipe, pipe};
11    }
12    target_os = "motor" => {
13        mod motor;
14        pub use motor::{AnonPipe, pipe};
15    }
16    _ => {
17        mod unsupported;
18        pub use unsupported::{AnonPipe, pipe};
19    }
20}