summaryrefslogtreecommitdiff
path: root/arch/mipsn32
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2017-11-27 01:16:14 +0000
committerRich Felker <dalias@aerifal.cx>2018-02-22 18:48:38 -0500
commit9eda4dc69c33852c97c6f69176bf45ffc80b522f (patch)
tree6c02602365dd79466b6127c5a7682c2f7c372fae /arch/mipsn32
parente69608700fa5a6920b3c8ba9951f43f5d4ec0eaa (diff)
downloadmusl-9eda4dc69c33852c97c6f69176bf45ffc80b522f.tar.gz
mips,powerpc: fix TIOCSER_TEMT in termios.h
use the same token to define TIOCSER_TEMT as is used in ioctl.h so when both headers are included there are no redefinition warnings during musl build.
Diffstat (limited to 'arch/mipsn32')
-rw-r--r--arch/mipsn32/bits/termios.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mipsn32/bits/termios.h b/arch/mipsn32/bits/termios.h
index 6a1205d7..692e58be 100644
--- a/arch/mipsn32/bits/termios.h
+++ b/arch/mipsn32/bits/termios.h
@@ -163,5 +163,5 @@ struct termios {
#define EXTPROC 0200000
#define XTABS 0014000
-#define TIOCSER_TEMT 1
+#define TIOCSER_TEMT 0x01
#endif