forked from mirror/async-std
* Cleanup: replace cfg-if with our macros * Prefix macros with cfg_ * Remove #[macro_export] from internal macros
9 lines
100 B
Rust
9 lines
100 B
Rust
//! OS-specific extensions.
|
|
|
|
cfg_unix! {
|
|
pub mod unix;
|
|
}
|
|
|
|
cfg_windows! {
|
|
pub mod windows;
|
|
}
|