mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Fix errors with bools represented as ints.
This commit is contained in:
parent
614044cff0
commit
e8aa7241fa
1 changed files with 3 additions and 3 deletions
|
@ -151,7 +151,7 @@ pub fn is_stdin_interactive() -> bool {
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
pub fn is_stdin_interactive() -> bool {
|
pub fn is_stdin_interactive() -> bool {
|
||||||
0
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
@ -161,7 +161,7 @@ pub fn is_stdout_interactive() -> bool {
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
pub fn is_stdout_interactive() -> bool {
|
pub fn is_stdout_interactive() -> bool {
|
||||||
0
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
@ -171,5 +171,5 @@ pub fn is_stderr_interactive() -> bool {
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
pub fn is_stderr_interactive() -> bool {
|
pub fn is_stderr_interactive() -> bool {
|
||||||
0
|
false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue