Merge pull request #6695 from cakebaker/uucore_fix_unused_import_warning_on_redox

uucore: fix "unused import" warning on Redox
This commit is contained in:
Sylvestre Ledru 2024-09-15 10:06:30 +02:00 committed by GitHub
commit a275080608
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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