aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-30 21:32:18 +0000
committerRichard M. Stallman1993-05-30 21:32:18 +0000
commit3580badc18f964f6ff5401a7280c7ef9c589e8b0 (patch)
tree1bf81aeab58328bf53abeb3077ae75af2bf81417 /src
parentb8da30477523c987df19f4950dc9db452e0960e9 (diff)
downloademacs-3580badc18f964f6ff5401a7280c7ef9c589e8b0.tar.gz
emacs-3580badc18f964f6ff5401a7280c7ef9c589e8b0.zip
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Diffstat (limited to 'src')
-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. */
30#include <fcntl.h> 30#include <fcntl.h>
31#else 31#else
32#ifdef HAVE_TERMIOS 32#ifdef HAVE_TERMIOS
33#if defined(_AIX) && defined(_I386)
34#include <termios.h> /* termios.h needs to be before termio.h */
35#include <termio.h>
36#else
33#include <termio.h> 37#include <termio.h>
34#include <termios.h> 38#include <termios.h>
39#endif /* _AIX && _I386 */
35#include <fcntl.h> 40#include <fcntl.h>
36#else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ 41#else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
37#ifndef VMS 42#ifndef VMS