diff options
author | Szabolcs Nagy <nsz@port70.net> | 2017-11-27 01:16:14 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-02-22 18:48:38 -0500 |
commit | 9eda4dc69c33852c97c6f69176bf45ffc80b522f (patch) | |
tree | 6c02602365dd79466b6127c5a7682c2f7c372fae /arch/mipsn32/bits | |
parent | e69608700fa5a6920b3c8ba9951f43f5d4ec0eaa (diff) | |
download | musl-9eda4dc69c33852c97c6f69176bf45ffc80b522f.tar.gz musl-9eda4dc69c33852c97c6f69176bf45ffc80b522f.tar.xz musl-9eda4dc69c33852c97c6f69176bf45ffc80b522f.zip |
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/bits')
-rw-r--r-- | arch/mipsn32/bits/termios.h | 2 |
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 |