11 lines
209 B
Rust
11 lines
209 B
Rust
#[cfg(all(
|
|
unix,
|
|
not(any(
|
|
target_os = "macos",
|
|
target_os = "ios",
|
|
target_os = "android",
|
|
target_os = "emscripten",
|
|
target_os = "redox"
|
|
))
|
|
))]
|
|
pub mod linux;
|