summaryrefslogtreecommitdiff
path: root/h
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@1ts.org>2009-04-15 15:19:08 +0000
committerGravatar Karl Ramm <kcr@1ts.org>2009-04-15 15:19:08 +0000
commit94661ad2d0b4a042d55c6e0e2cc4284ec216f0d9 (patch)
tree6263fe058357a2dae2783ad49d527cd12091509b /h
parentbe41eecada4799e5599dd8030778711eb2c16a52 (diff)
If you don't have termios, get a better computer. Nickels available.
Diffstat (limited to 'h')
-rw-r--r--h/config.h.in3
-rw-r--r--h/sysdep.h15
2 files changed, 1 insertions, 17 deletions
diff --git a/h/config.h.in b/h/config.h.in
index 327936c..074306f 100644
--- a/h/config.h.in
+++ b/h/config.h.in
@@ -233,9 +233,6 @@
/* Define to 1 if you have the <termcap.h> header file. */
#undef HAVE_TERMCAP_H
-/* Define to 1 if you have the <termios.h> header file. */
-#undef HAVE_TERMIOS_H
-
/* Define to 1 if you have the <term.h> header file. */
#undef HAVE_TERM_H
diff --git a/h/sysdep.h b/h/sysdep.h
index 468e5c4..f6943ba 100644
--- a/h/sysdep.h
+++ b/h/sysdep.h
@@ -152,20 +152,7 @@ ZEPHYR_INT32 gethostid();
#define STDERR_FILENO 2
#endif
-#ifdef HAVE_TERMIOS_H
-# include <termios.h>
-#else
-# ifdef HAVE_SYS_FILIO_H
-# include <sys/filio.h>
-# else
-# ifdef HAVE_SGTTY_H
-# include <sgtty.h>
-# endif
-# ifdef HAVE_SYS_IOCTL_H
-# include <sys/ioctl.h>
-# endif
-# endif
-#endif
+#include <termios.h>
/* Kerberos compatibility. */
#ifdef HAVE_KRB4