aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2009-11-28 11:57:25 +0000
committerEd Schouten <ed@FreeBSD.org>2009-11-28 11:57:25 +0000
commitea74c11fae51f0b16466fe8e9e49d5b786e45052 (patch)
tree84254a0831174a1fb28b7adb7635df99adcb4544
parent1743ff6a012c64389125bbca7cebeae6c1482209 (diff)
downloadsrc-ea74c11fae51f0b16466fe8e9e49d5b786e45052.tar.gz
src-ea74c11fae51f0b16466fe8e9e49d5b786e45052.zip
Use <termios.h> instead of <sys/termios.h>.
<sys/termios.h> only works on FreeBSD by accident.
Notes
Notes: svn path=/head/; revision=199874
-rw-r--r--contrib/telnet/telnet/externs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/telnet/telnet/externs.h b/contrib/telnet/telnet/externs.h
index 73743c025ed8..cfa1aec372d9 100644
--- a/contrib/telnet/telnet/externs.h
+++ b/contrib/telnet/telnet/externs.h
@@ -57,7 +57,7 @@
#include <errno.h>
#ifdef USE_TERMIO
# ifndef VINTR
-# include <sys/termios.h>
+# include <termios.h>
# endif
# define termio termios
#endif