1#[cfg(not(target_os = "redox"))]
2pub(crate) mod dir;
3#[cfg(not(any(
4    target_os = "dragonfly",
5    target_os = "haiku",
6    target_os = "freebsd",
7    target_os = "illumos",
8    target_os = "ios",
9    target_os = "macos",
10    target_os = "netbsd",
11    target_os = "openbsd",
12    target_os = "redox",
13    target_os = "solaris",
14    target_os = "wasi",
15)))]
16pub(crate) mod makedev;
17#[cfg(not(windows))]
18pub(crate) mod syscalls;
19pub(crate) mod types;
20