mirror of
https://github.com/ziglang/zig.git
synced 2024-12-01 01:22:50 +00:00
Fix wrong IOCTL value
This commit is contained in:
parent
4ebcf64864
commit
a9be62f085
@ -524,7 +524,7 @@ pub const TIOCSPGRP = 0x5410;
|
||||
pub const TIOCOUTQ = if (is_mips) 0x7472 else 0x5411;
|
||||
pub const TIOCSTI = 0x5412;
|
||||
pub const TIOCGWINSZ = if (is_mips) 0x40087468 else 0x5413;
|
||||
pub const TIOCSWINSZ = if (is_mips) 0x40087467 else 0x5414;
|
||||
pub const TIOCSWINSZ = if (is_mips) 0x80087467 else 0x5414;
|
||||
pub const TIOCMGET = 0x5415;
|
||||
pub const TIOCMBIS = 0x5416;
|
||||
pub const TIOCMBIC = 0x5417;
|
||||
|
Loading…
Reference in New Issue
Block a user