| 1 | // Copyright (c) 2017 CtrlC developers |
| 2 | // Licensed under the Apache License, Version 2.0 |
| 3 | // <LICENSE-APACHE or |
| 4 | // http://www.apache.org/licenses/LICENSE-2.0> or the MIT |
| 5 | // license <LICENSE-MIT or http://opensource.org/licenses/MIT>, |
| 6 | // at your option. All files in the project carrying such |
| 7 | // notice may not be copied, modified, or distributed except |
| 8 | // according to those terms. |
| 9 | |
| 10 | #[cfg (unix)] |
| 11 | mod unix; |
| 12 | |
| 13 | #[cfg (windows)] |
| 14 | mod windows; |
| 15 | |
| 16 | #[cfg (unix)] |
| 17 | pub use self::unix::*; |
| 18 | |
| 19 | #[cfg (windows)] |
| 20 | pub use self::windows::*; |
| 21 | |