]> git.eshelyaron.com Git - emacs.git/commitdiff
[HAVE_TERMIOS_H]: Include termios.h.
authorRichard M. Stallman <rms@gnu.org>
Sun, 29 Jun 1997 00:08:34 +0000 (00:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 29 Jun 1997 00:08:34 +0000 (00:08 +0000)
src/sysdep.c

index 5197317b5f9f77fecdf29278b6dabb97c4b4d991..d863e23bcd4cebcebd6c5d173a6c439212f0f4ca 100644 (file)
@@ -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,