diff options
Diffstat (limited to 'vendor/rustix/src/pty.rs')
-rw-r--r-- | vendor/rustix/src/pty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/rustix/src/pty.rs b/vendor/rustix/src/pty.rs index d7d250250..5040ca2c1 100644 --- a/vendor/rustix/src/pty.rs +++ b/vendor/rustix/src/pty.rs @@ -23,7 +23,7 @@ bitflags::bitflags! { const RDWR = c::O_RDWR as c::c_uint; /// `O_NOCTTY` - #[cfg(not(target_os = "redox"))] + #[cfg(not(any(target_os = "espidf", target_os = "l4re", target_os = "redox")))] const NOCTTY = c::O_NOCTTY as c::c_uint; /// `O_CLOEXEC` |