summaryrefslogtreecommitdiff
path: root/src/systty.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-30 21:32:18 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-30 21:32:18 +0000
commit016d49ee7091b9b0c6ba8ffb48390d43a272d749 (patch)
tree67303b7e194df7dbd4775ba915dbc4f7b4482260 /src/systty.h
parent4b144ec86d91ffa4054e603ccafb1dd1b3b5ee74 (diff)
downloademacs-016d49ee7091b9b0c6ba8ffb48390d43a272d749.tar.gz
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Diffstat (limited to 'src/systty.h')
-rw-r--r--src/systty.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/systty.h b/src/systty.h
index bb24a7aedb2..2171a960465 100644
--- a/src/systty.h
+++ b/src/systty.h
@@ -30,8 +30,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <fcntl.h>
#else
#ifdef HAVE_TERMIOS
+#if defined(_AIX) && defined(_I386)
+#include <termios.h> /* termios.h needs to be before termio.h */
+#include <termio.h>
+#else
#include <termio.h>
#include <termios.h>
+#endif /* _AIX && _I386 */
#include <fcntl.h>
#else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
#ifndef VMS