Skip to content

Commit

Permalink
bugfix: Fix unused type in WASI
Browse files Browse the repository at this point in the history
Signed-off-by: John Nunley <[email protected]>
  • Loading branch information
notgull committed Sep 27, 2024
1 parent 8305867 commit 0e7bf68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/libc/termios/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ use crate::ffi;
pub type tcflag_t = ffi::c_ulong;
#[cfg(target_os = "redox")]
pub type tcflag_t = u32;
#[cfg(not(any(apple, target_os = "redox")))]
#[cfg(not(any(target_os = "wasi", apple, target_os = "redox")))]
pub type tcflag_t = ffi::c_uint;

0 comments on commit 0e7bf68

Please sign in to comment.