1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

uucore: fix "unused import" warning on redox

This commit is contained in:
Daniel Hofstetter 2024-09-14 16:14:31 +02:00
parent 8a9fb84a8e
commit 6aadfeaec5

View file

@ -8,6 +8,7 @@
// spell-checker:ignore pgrep pwait snice // spell-checker:ignore pgrep pwait snice
use libc::{gid_t, pid_t, uid_t}; use libc::{gid_t, pid_t, uid_t};
#[cfg(not(target_os = "redox"))]
use nix::errno::Errno; use nix::errno::Errno;
use std::io; use std::io;
use std::process::Child; use std::process::Child;