extattr/platforms/
mod.rs

1#[cfg(any(target_os = "freebsd", target_os = "netbsd"))]
2pub mod freebsd;
3
4// #[cfg(any(target_os = "linux", target_os = "android", target_os = "netbsd"))]
5#[cfg(any(target_os = "linux", target_os = "android"))]
6pub mod linux_and_android;
7
8#[cfg(any(target_os = "macos", target_os = "ios"))]
9pub mod darwin;
10
11#[cfg(target_os = "netbsd")]
12pub mod netbsd;