forked from mirror/async-std
9 lines
231 B
Rust
9 lines
231 B
Rust
//! OS-specific extensions.
|
|
|
|
#[cfg(any(unix, feature = "docs"))]
|
|
#[cfg_attr(feature = "docs", doc(cfg(unix)))]
|
|
pub mod unix;
|
|
|
|
#[cfg(any(windows, feature = "docs"))]
|
|
#[cfg_attr(feature = "docs", doc(cfg(windows)))]
|
|
pub mod windows;
|