diff options
author | Samuel Holland <samuel@sholland.org> | 2019-06-29 18:19:06 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-07-10 17:09:49 -0400 |
commit | 05eb8ea0607d8886b95e083abd10c5122b475a1a (patch) | |
tree | c5422f9f9f92313c22064721d1df7f1e7fd537b0 /arch/mips | |
parent | e0eee3ceefd550724058ffbdf878e9eb06e18f18 (diff) | |
download | musl-05eb8ea0607d8886b95e083abd10c5122b475a1a.tar.gz |
fix conflicting mips and powerpc definitions for TIOCSER_TEMT macro
Commit 3517d74a5e04a377192d1f4882ad6c8dc22ce69a changed the token in
sys/ioctl.h from 0x01 to 1, so bits/termios.h no longer matches. Revert
the bits/termios.h change to keep the headers in sync.
This reverts commit 9eda4dc69c33852c97c6f69176bf45ffc80b522f.
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/bits/termios.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bits/termios.h b/arch/mips/bits/termios.h index f7b9dd2e..9d571f78 100644 --- a/arch/mips/bits/termios.h +++ b/arch/mips/bits/termios.h @@ -165,5 +165,5 @@ struct termios { #define EXTPROC 0200000 #define XTABS 0014000 -#define TIOCSER_TEMT 0x01 +#define TIOCSER_TEMT 1 #endif |