about summary refs log tree commit diff
path: root/library/std/src/sys/path/mod.rs
blob: 254683bc83f917952d4ebf5b018d6647e92847b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
cfg_select! {
    target_os = "windows" => {
        mod windows;
        mod windows_prefix;
        pub use windows::*;
    }
    all(target_vendor = "fortanix", target_env = "sgx") => {
        mod sgx;
        pub use sgx::*;
    }
    target_os = "solid_asp3" => {
        mod unsupported_backslash;
        pub use unsupported_backslash::*;
    }
    target_os = "uefi" => {
        mod uefi;
        pub use uefi::*;
    }
    target_os = "cygwin" => {
        mod cygwin;
        mod windows_prefix;
        pub use cygwin::*;
    }
    _ => {
        mod unix;
        pub use unix::*;
    }
}