summaryrefslogtreecommitdiff
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-06-29 00:08:34 +0000
committerRichard M. Stallman <rms@gnu.org>1997-06-29 00:08:34 +0000
commit03407632d251fecb87ea6e1ea7c59bed8e5e67e9 (patch)
tree5179caaebf8d1b8858016dd6c727181823d3e31b /src/sysdep.c
parent67b50bf76ae18dab78366ab13e12eab001dd9df4 (diff)
downloademacs-03407632d251fecb87ea6e1ea7c59bed8e5e67e9.tar.gz
emacs-03407632d251fecb87ea6e1ea7c59bed8e5e67e9.tar.bz2
emacs-03407632d251fecb87ea6e1ea7c59bed8e5e67e9.zip
[HAVE_TERMIOS_H]: Include termios.h.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 5197317b5f9..d863e23bcd4 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -27,6 +27,10 @@ Boston, MA 02111-1307, USA. */
#include "blockinput.h"
#undef NULL
+#ifdef HAVE_TERMIOS_H
+#include <termios.h>
+#endif
+
#define min(x,y) ((x) > (y) ? (y) : (x))
/* In this file, open, read and write refer to the system calls,