1#[cfg(not(any(target_os = "espidf", target_os = "haiku", target_os = "wasi")))]
12mod ioctl;
13#[cfg(not(target_os = "wasi"))]
14mod tc;
15#[cfg(not(windows))]
16mod tty;
17#[cfg(not(any(target_os = "espidf", target_os = "wasi")))]
18mod types;
19
20#[cfg(not(any(target_os = "espidf", target_os = "haiku", target_os = "wasi")))]
21pub use ioctl::*;
22#[cfg(not(target_os = "wasi"))]
23pub use tc::*;
24#[cfg(not(windows))]
25pub use tty::*;
26#[cfg(not(any(target_os = "espidf", target_os = "wasi")))]
27pub use types::*;