summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/imp/libc/fs/mod.rs
blob: 02b7b2d6a2ba22314733ac27f519b1008e3ca4bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(not(target_os = "redox"))]
#[cfg(any(feature = "fs", feature = "procfs"))]
pub(crate) mod dir;
#[cfg(not(any(
    target_os = "dragonfly",
    target_os = "freebsd",
    target_os = "illumos",
    target_os = "ios",
    target_os = "macos",
    target_os = "netbsd",
    target_os = "openbsd",
    target_os = "redox",
    target_os = "wasi",
)))]
pub(crate) mod makedev;
#[cfg(not(windows))]
pub(crate) mod syscalls;
pub(crate) mod types;