Skip to content

Commit

Permalink
bugfix: Fix unused type in WASI (#1177)
Browse files Browse the repository at this point in the history
Signed-off-by: John Nunley <[email protected]>
  • Loading branch information
notgull authored and sunfishcode committed Jan 22, 2025
1 parent 4d0458c commit 9e0aed4
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 9e0aed4

Please sign in to comment.