aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/term.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index f43b77158aa..aeccdf285cb 100644
--- a/src/term.c
+++ b/src/term.c
@@ -29,7 +29,10 @@ Boston, MA 02111-1307, USA. */
29#include <sys/file.h> 29#include <sys/file.h>
30 30
31#include <unistd.h> /* For isatty. */ 31#include <unistd.h> /* For isatty. */
32#include <termio.h> /* For TIOCNOTTY. */ 32
33#if HAVE_TERMIOS_H
34#include <termios.h> /* For TIOCNOTTY. */
35#endif
33 36
34#include <signal.h> 37#include <signal.h>
35 38