|
Message-ID: <c7be426e8975197f3ef96f8638efb45bc9b2fca3.1460250248.git.nsz@port70.net> Date: Sun, 10 Apr 2016 14:16:24 +0200 From: Szabolcs Nagy <nsz@...t70.net> To: musl@...ts.openwall.com Subject: [PATCH 16/16] fix struct termios in mips termios.h mips termios struct has no ispeed and ospeed members in glibc, mips64 is already consistent with glibc. this is an abi change. --- arch/mips/bits/termios.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/arch/mips/bits/termios.h b/arch/mips/bits/termios.h index 29b4b22..d97df8c 100644 --- a/arch/mips/bits/termios.h +++ b/arch/mips/bits/termios.h @@ -1,13 +1,10 @@ -struct termios -{ +struct termios { tcflag_t c_iflag; tcflag_t c_oflag; tcflag_t c_cflag; tcflag_t c_lflag; cc_t c_line; cc_t c_cc[NCCS]; - speed_t __c_ispeed; - speed_t __c_ospeed; }; #define VINTR 0 -- 2.7.2
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.