]> git.proxmox.com Git - rustc.git/blob - vendor/rustix/src/termios/mod.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / vendor / rustix / src / termios / mod.rs
1 //! Terminal I/O stream operations.
2
3 #[cfg(not(target_os = "wasi"))]
4 mod cf;
5 #[cfg(not(target_os = "wasi"))]
6 mod constants;
7 #[cfg(not(target_os = "wasi"))]
8 mod tc;
9 #[cfg(not(windows))]
10 mod tty;
11
12 #[cfg(not(target_os = "wasi"))]
13 pub use cf::*;
14 #[cfg(not(target_os = "wasi"))]
15 pub use constants::*;
16 #[cfg(not(target_os = "wasi"))]
17 pub use tc::*;
18 #[cfg(not(windows))]
19 pub use tty::*;