summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/termios/mod.rs
blob: ffbb1b6631c0230854133f0c033f4fd845df3a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! Terminal I/O stream operations.

#[cfg(not(target_os = "wasi"))]
mod cf;
#[cfg(not(target_os = "wasi"))]
mod constants;
#[cfg(not(target_os = "wasi"))]
mod tc;
#[cfg(not(windows))]
mod tty;

#[cfg(not(target_os = "wasi"))]
pub use cf::*;
#[cfg(not(target_os = "wasi"))]
pub use constants::*;
#[cfg(not(target_os = "wasi"))]
pub use tc::*;
#[cfg(not(windows))]
pub use tty::*;