diff options
author | Szabolcs Nagy <nsz@port70.net> | 2016-07-03 17:06:03 +0200 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-07-03 14:54:35 -0400 |
commit | 809495f7b77abba57cd6da600d9dbcf6d2d8f73b (patch) | |
tree | 4bba27212dfdc8007ebc032d299aac3ad8fb9ff6 /arch/mips64/bits/ioctl.h | |
parent | b76d4e06f1686337713a31a9e7274e1321ae41b6 (diff) | |
download | musl-809495f7b77abba57cd6da600d9dbcf6d2d8f73b.tar.gz |
fix TIOCMSET in mips ioctl.h
it seems it was a typo.
Diffstat (limited to 'arch/mips64/bits/ioctl.h')
-rw-r--r-- | arch/mips64/bits/ioctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips64/bits/ioctl.h b/arch/mips64/bits/ioctl.h index ce80eb6a..accd7af2 100644 --- a/arch/mips64/bits/ioctl.h +++ b/arch/mips64/bits/ioctl.h @@ -27,7 +27,7 @@ #define TIOCMGET 0x741D #define TIOCMBIS 0x741B #define TIOCMBIC 0x741C -#define TIOCMSET 0x741D +#define TIOCMSET 0x741A #define TIOCPKT 0x5470 #define TIOCSWINSZ _IOW('t', 103, struct winsize) |