Mercurial > emacs
changeset 18490:892910c06f24
[HAVE_TERMIOS_H]: Include termios.h.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 29 Jun 1997 00:08:34 +0000 |
parents | 42257ed9c7e3 |
children | bf0d449581c8 |
files | src/sysdep.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sysdep.c Sat Jun 28 23:45:26 1997 +0000 +++ b/src/sysdep.c Sun Jun 29 00:08:34 1997 +0000 @@ -27,6 +27,10 @@ #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,