| 1 | #[cfg(unix)] |
|---|---|
| 2 | mod unix; |
| 3 | #[cfg(unix)] |
| 4 | pub use unix::*; |
| 5 | |
| 6 | #[cfg(not(unix))] |
| 7 | mod any; |
| 8 | #[cfg(not(unix))] |
| 9 | pub use any::*; |
| 10 |
| 1 | #[cfg(unix)] |
|---|---|
| 2 | mod unix; |
| 3 | #[cfg(unix)] |
| 4 | pub use unix::*; |
| 5 | |
| 6 | #[cfg(not(unix))] |
| 7 | mod any; |
| 8 | #[cfg(not(unix))] |
| 9 | pub use any::*; |
| 10 |