Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3580badc
Commit
3580badc
authored
May 30, 1993
by
Richard M. Stallman
Browse files
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
parent
b8da3047
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/systty.h
src/systty.h
+5
-0
No files found.
src/systty.h
View file @
3580badc
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment