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

<sys/termios.h> only works on FreeBSD by accident.
This commit is contained in:
Ed Schouten 2009-11-28 11:57:25 +00:00
parent 1743ff6a01
commit ea74c11fae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199874

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