mirror of
https://github.com/uutils/coreutils
synced 2024-11-13 00:17:09 +00:00
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:
commit
a275080608
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue