summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/io/close.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/io/close.rs')
-rw-r--r--vendor/rustix/src/io/close.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/rustix/src/io/close.rs b/vendor/rustix/src/io/close.rs
index 2116f53bd..b286d2368 100644
--- a/vendor/rustix/src/io/close.rs
+++ b/vendor/rustix/src/io/close.rs
@@ -5,8 +5,8 @@
//! Operating on raw file descriptors is unsafe.
#![allow(unsafe_code)]
-use crate::imp;
-use imp::fd::RawFd;
+use crate::backend;
+use backend::fd::RawFd;
/// `close(raw_fd)`—Closes a `RawFd` directly.
///
@@ -37,5 +37,5 @@ use imp::fd::RawFd;
/// not valid after the call.
#[inline]
pub unsafe fn close(raw_fd: RawFd) {
- imp::io::syscalls::close(raw_fd)
+ backend::io::syscalls::close(raw_fd)
}