Skip to content

Commit 9e0aed4

Browse files
notgullsunfishcode
authored andcommittedJan 22, 2025
bugfix: Fix unused type in WASI (#1177)
Signed-off-by: John Nunley <dev@notgull.net>
1 parent 4d0458c commit 9e0aed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/backend/libc/termios/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ use crate::ffi;
1111
pub type tcflag_t = ffi::c_ulong;
1212
#[cfg(target_os = "redox")]
1313
pub type tcflag_t = u32;
14-
#[cfg(not(any(apple, target_os = "redox")))]
14+
#[cfg(not(any(target_os = "wasi", apple, target_os = "redox")))]
1515
pub type tcflag_t = ffi::c_uint;

0 commit comments

Comments
 (0)