summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/process/uname.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/process/uname.rs')
-rw-r--r--vendor/rustix/src/process/uname.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/rustix/src/process/uname.rs b/vendor/rustix/src/process/uname.rs
index a17d0be7a..95dec2699 100644
--- a/vendor/rustix/src/process/uname.rs
+++ b/vendor/rustix/src/process/uname.rs
@@ -6,20 +6,20 @@
//! kernel into `&str` references, which assumes that they're NUL-terminated.
#![allow(unsafe_code)]
+use crate::backend;
use crate::ffi::CStr;
-use crate::imp;
use core::fmt;
/// `uname()`—Returns high-level information about the runtime OS and
/// hardware.
#[inline]
pub fn uname() -> Uname {
- Uname(imp::process::syscalls::uname())
+ Uname(backend::process::syscalls::uname())
}
/// `struct utsname`—Return type for [`uname`].
#[doc(alias = "utsname")]
-pub struct Uname(imp::process::types::RawUname);
+pub struct Uname(backend::process::types::RawUname);
impl Uname {
/// `sysname`—Operating system release name