We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e84fc9e commit 4d3b4b9Copy full SHA for 4d3b4b9
1 file changed
src/uu/stty/src/flags.rs
@@ -125,16 +125,17 @@ pub const OUTPUT_FLAGS: &[Flag<O>] = &[
125
target_os = "linux",
126
target_os = "macos"
127
))]
128
+ #[cfg(any(
129
+ target_os = "android",
130
+ target_os = "haiku",
131
+ target_os = "ios",
132
+ target_os = "linux",
133
+ target_os = "macos"
134
+ ))]
135
// Not supported by nix.
136
// See: https://github.com/nix-rust/nix/pull/2701
- // #[cfg(any(
- // target_os = "android",
- // target_os = "haiku",
- // target_os = "ios",
- // target_os = "linux",
- // target_os = "macos"
- // ))]
137
- // Flag::new("ofill", O::OFILL),
+ // FIXME: Flag::new("ofill", O::OFILL),
138
+ Flag::new("ofill", O::from_bits_retain(nix::libc::OFILL)),
139
Flag::new("ofdel", O::OFDEL),
140
#[cfg(any(
141
target_os = "android",
0 commit comments