Require either termios or termio, no more sgtty.

This commit is contained in:
Todd C. Miller
2010-03-12 11:45:57 -05:00
parent cb8696d67e
commit 0795ef846c
5 changed files with 25 additions and 116 deletions

View File

@@ -25,11 +25,7 @@
#ifdef HAVE_TERMIOS_H
# include <termios.h>
#else
# ifdef HAVE_TERMIO_H
# include <termio.h>
# else
# include <sgtty.h>
# endif /* HAVE_TERMIO_H */
# include <termio.h>
#endif /* HAVE_TERMIOS_H */
#include <sys/ioctl.h>
#ifdef HAVE_SYS_SELECT_H