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