summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/termios/cf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/termios/cf.rs')
-rw-r--r--vendor/rustix/src/termios/cf.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/vendor/rustix/src/termios/cf.rs b/vendor/rustix/src/termios/cf.rs
index d28b65e03..d79eab5c8 100644
--- a/vendor/rustix/src/termios/cf.rs
+++ b/vendor/rustix/src/termios/cf.rs
@@ -1,40 +1,40 @@
use crate::termios::{Speed, Termios};
-use crate::{imp, io};
+use crate::{backend, io};
/// `cfgetospeed(termios)`
#[inline]
#[must_use]
pub fn cfgetospeed(termios: &Termios) -> Speed {
- imp::termios::syscalls::cfgetospeed(termios)
+ backend::termios::syscalls::cfgetospeed(termios)
}
/// `cfgetispeed(termios)`
#[inline]
#[must_use]
pub fn cfgetispeed(termios: &Termios) -> Speed {
- imp::termios::syscalls::cfgetispeed(termios)
+ backend::termios::syscalls::cfgetispeed(termios)
}
/// `cfmakeraw(termios)`
#[inline]
pub fn cfmakeraw(termios: &mut Termios) {
- imp::termios::syscalls::cfmakeraw(termios)
+ backend::termios::syscalls::cfmakeraw(termios)
}
/// `cfsetospeed(termios, speed)`
#[inline]
pub fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> {
- imp::termios::syscalls::cfsetospeed(termios, speed)
+ backend::termios::syscalls::cfsetospeed(termios, speed)
}
/// `cfsetispeed(termios, speed)`
#[inline]
pub fn cfsetispeed(termios: &mut Termios, speed: Speed) -> io::Result<()> {
- imp::termios::syscalls::cfsetispeed(termios, speed)
+ backend::termios::syscalls::cfsetispeed(termios, speed)
}
/// `cfsetspeed(termios, speed)`
#[inline]
pub fn cfsetspeed(termios: &mut Termios, speed: Speed) -> io::Result<()> {
- imp::termios::syscalls::cfsetspeed(termios, speed)
+ backend::termios::syscalls::cfsetspeed(termios, speed)
}