diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 4 |
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. */ | |||
| 27 | #include "blockinput.h" | 27 | #include "blockinput.h" |
| 28 | #undef NULL | 28 | #undef NULL |
| 29 | 29 | ||
| 30 | #ifdef HAVE_TERMIOS_H | ||
| 31 | #include <termios.h> | ||
| 32 | #endif | ||
| 33 | |||
| 30 | #define min(x,y) ((x) > (y) ? (y) : (x)) | 34 | #define min(x,y) ((x) > (y) ? (y) : (x)) |
| 31 | 35 | ||
| 32 | /* In this file, open, read and write refer to the system calls, | 36 | /* In this file, open, read and write refer to the system calls, |