From 9f1304c40df70a99dd0660f022a1b9460e123a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 21 Nov 2025 21:00:31 +0100 Subject: [PATCH] termios: Add OFILL Related to: https://github.com/uutils/coreutils/pull/9432 --- src/sys/termios.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/sys/termios.rs b/src/sys/termios.rs index bff981fad5..b7a693ab10 100644 --- a/src/sys/termios.rs +++ b/src/sys/termios.rs @@ -503,6 +503,17 @@ libc_bitflags! { target_os = "haiku", apple_targets))] OFDEL as tcflag_t; + #[cfg(any(linux_android, + target_os = "aix", + target_os = "cygwin", + target_os = "fuchsia", + target_os = "haiku", + target_os = "hurd", + target_os = "nto", + target_os = "redox", + solarish, + apple_targets))] + OFILL as tcflag_t; #[cfg(any(linux_android, target_os = "haiku", apple_targets))]