diff options
author | 1998-07-27 15:29:29 +0000 | |
---|---|---|
committer | 1998-07-27 15:29:29 +0000 | |
commit | cf2db2a11c89a38a24853b07a2d937bef6d28095 (patch) | |
tree | b5cee7efcaf10045df936a2dba469e6029fdcc4b | |
parent | use ocurses since libtelnet has a getstr() function that conflicts with ncurses (diff) | |
download | wireguard-openbsd-cf2db2a11c89a38a24853b07a2d937bef6d28095.tar.xz wireguard-openbsd-cf2db2a11c89a38a24853b07a2d937bef6d28095.zip |
don't include term.h
-rw-r--r-- | usr.bin/telnet/telnet.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/telnet/telnet.c b/usr.bin/telnet/telnet.c index 379192f9e55..5fc6e00b1f8 100644 --- a/usr.bin/telnet/telnet.c +++ b/usr.bin/telnet/telnet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: telnet.c,v 1.5 1998/05/15 03:16:43 art Exp $ */ +/* $OpenBSD: telnet.c,v 1.6 1998/07/27 15:29:29 millert Exp $ */ /* $NetBSD: telnet.c,v 1.7 1996/02/28 21:04:15 thorpej Exp $ */ /* @@ -35,7 +35,6 @@ */ #include "telnet_locl.h" -#include <term.h> #define strip(x) (eight ? (x) : ((x) & 0x7f)) |