From: Richard M. Stallman Date: Sun, 29 Jun 1997 00:08:34 +0000 (+0000) Subject: [HAVE_TERMIOS_H]: Include termios.h. X-Git-Tag: emacs-20.1~1456 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03407632d251fecb87ea6e1ea7c59bed8e5e67e9;p=emacs.git [HAVE_TERMIOS_H]: Include termios.h. --- 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 +#endif + #define min(x,y) ((x) > (y) ? (y) : (x)) /* In this file, open, read and write refer to the system calls,