Skip to content

Commit

Permalink
Merge pull request uutils#6695 from cakebaker/uucore_fix_unused_impor…
Browse files Browse the repository at this point in the history
…t_warning_on_redox

uucore: fix "unused import" warning on Redox
  • Loading branch information
sylvestre committed Sep 15, 2024
2 parents 8a9fb84 + 6aadfea commit a275080
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/uucore/src/lib/features/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a275080

Please sign in to comment.