| 1 | cfg_select! { |
| 2 | target_os = "windows" => { |
| 3 | mod windows; |
| 4 | mod windows_prefix; |
| 5 | pub use windows::*; |
| 6 | } |
| 7 | all(target_vendor = "fortanix" , target_env = "sgx" ) => { |
| 8 | mod sgx; |
| 9 | pub use sgx::*; |
| 10 | } |
| 11 | target_os = "solid_asp3" => { |
| 12 | mod unsupported_backslash; |
| 13 | pub use unsupported_backslash::*; |
| 14 | } |
| 15 | target_os = "uefi" => { |
| 16 | mod uefi; |
| 17 | pub use uefi::*; |
| 18 | } |
| 19 | target_os = "cygwin" => { |
| 20 | mod cygwin; |
| 21 | mod windows_prefix; |
| 22 | pub use cygwin::*; |
| 23 | } |
| 24 | _ => { |
| 25 | mod unix; |
| 26 | pub use unix::*; |
| 27 | } |
| 28 | } |
| 29 | |