1 //! Tests for [`rustix::termios`]. 2 3 #![cfg_attr(target_os = "wasi", feature(wasi_ext))] 4 #![cfg_attr(io_lifetimes_use_std, feature(io_safety))] 5 #![cfg(feature = "termios")] 6 7 #[cfg(not(windows))] 8 mod isatty; 9 #[cfg(not(any(windows, target_os = "fuchsia")))] 10 #[cfg(feature = "procfs")] 11 mod ttyname; 12