about summary refs log tree commit diff
path: root/arch/mips/bits/termios.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-01-08 19:20:55 -0500
committerRich Felker <dalias@aerifal.cx>2014-01-08 19:20:55 -0500
commita627eb35864d5c29a3c3300dfe83745ab1e7a00f (patch)
tree874aeaaa0495ec153881c6c78c3ec913acc0a92d /arch/mips/bits/termios.h
parentacde013522fc264f0898d300cc9d2ff796c1a006 (diff)
downloadmusl-a627eb35864d5c29a3c3300dfe83745ab1e7a00f.tar.gz
musl-a627eb35864d5c29a3c3300dfe83745ab1e7a00f.tar.xz
musl-a627eb35864d5c29a3c3300dfe83745ab1e7a00f.zip
fix namespace violations in termios.h, at least mostly
the fix should be complete on archs that use the generic definitions
(i386, arm, x86_64, microblaze), but mips and powerpc have not been
checked thoroughly and may need more fixes.
Diffstat (limited to 'arch/mips/bits/termios.h')
-rw-r--r--arch/mips/bits/termios.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/arch/mips/bits/termios.h b/arch/mips/bits/termios.h
index 179af8e7..487c1d45 100644
--- a/arch/mips/bits/termios.h
+++ b/arch/mips/bits/termios.h
@@ -77,9 +77,6 @@ struct termios
 #define VT0    0000000
 #define VT1    0040000
 
-/* ?? */
-#define XTABS  0014000
-
 #define B0       0000000
 #define B50      0000001
 #define B75      0000002
@@ -129,12 +126,6 @@ struct termios
 #define PARODD 0001000
 #define HUPCL  0002000
 #define CLOCAL 0004000
-#define CBAUDEX 0010000
-
-#define CIBAUD   002003600000
-#define CMSPAR   010000000000
-#define CRTSCTS  020000000000
-#define IBSHIFT 16
 
 #define ISIG   0000001
 #define ICANON 0000002
@@ -152,9 +143,6 @@ struct termios
 #define PENDIN 0040000
 #define TOSTOP 0100000
 #define ITOSTOP 0100000
-#define EXTPROC 0200000
-
-#define TIOCSER_TEMT 1
 
 #define TCOOFF 0
 #define TCOON  1
@@ -168,3 +156,14 @@ struct termios
 #define TCSANOW   0
 #define TCSADRAIN 1
 #define TCSAFLUSH 2
+
+#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
+#define CBAUDEX 0010000
+#define CIBAUD   002003600000
+#define IBSHIFT 16
+#define CMSPAR   010000000000
+#define CRTSCTS  020000000000
+#define EXTPROC 0200000
+#define XTABS  0014000
+#define TIOCSER_TEMT 1
+#endif