Use <termios.h> instead of <sys/termios.h>.

<sys/termios.h> only works on FreeBSD by accident.


git-svn-id: http://svn0.us-east.freebsd.org/base/head/contrib/telnet@199874 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
This commit is contained in:
ed 2009-11-28 11:57:25 +00:00
parent 7541522753
commit 67287bcb77
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
#include <errno.h>
#ifdef USE_TERMIO
# ifndef VINTR
# include <sys/termios.h>
# include <termios.h>
# endif
# define termio termios
#endif