diff options
author | Karl Ramm <kcr@1ts.org> | 2009-04-15 15:19:08 +0000 |
---|---|---|
committer | Karl Ramm <kcr@1ts.org> | 2009-04-15 15:19:08 +0000 |
commit | 94661ad2d0b4a042d55c6e0e2cc4284ec216f0d9 (patch) | |
tree | 6263fe058357a2dae2783ad49d527cd12091509b /h | |
parent | be41eecada4799e5599dd8030778711eb2c16a52 (diff) |
If you don't have termios, get a better computer. Nickels available.
Diffstat (limited to 'h')
-rw-r--r-- | h/config.h.in | 3 | ||||
-rw-r--r-- | h/sysdep.h | 15 |
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 @@ -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 |