Fix wrong IOCTL value

This commit is contained in:
LemonBoy 2019-09-26 11:49:49 +02:00
parent 4ebcf64864
commit a9be62f085

View File

@ -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;