authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-09-26 11:49:49+02:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-09-26 11:49:49+02:00
loga9be62f0858749ae479d05167392c7cf965da3ce
treef0a67f4480a8fa6325c4a4fb8ba5394a8d40cbd5
parent4ebcf64864eeec6c2086826242f53eedc69275ad

Fix wrong IOCTL value


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os/bits/linux.zig+1-1
......@@ -524,7 +524,7 @@ pub const TIOCSPGRP = 0x5410;
524524pub const TIOCOUTQ = if (is_mips) 0x7472 else 0x5411;
525525pub const TIOCSTI = 0x5412;
526526pub const TIOCGWINSZ = if (is_mips) 0x40087468 else 0x5413;
527pub const TIOCSWINSZ = if (is_mips) 0x40087467 else 0x5414;
527pub const TIOCSWINSZ = if (is_mips) 0x80087467 else 0x5414;
528528pub const TIOCMGET = 0x5415;
529529pub const TIOCMBIS = 0x5416;
530530pub const TIOCMBIC = 0x5417;