diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-10-10 15:41:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-10-10 15:41:12 +0000 |
commit | 32180c77f9e53db55782c1c3db409c2212983aee (patch) | |
tree | de605998ca6e4cb8f1c7831b55168ef9ead3c3f6 /usr.bin/telnet/sys_bsd.c | |
parent | f84b251dcea2a027b2051fe9d1e8998cdde947da (diff) |
Use curses, not ocurses and thus setupterm() not tgetent(). This means
we no longer need to have a faked up telnet_setupterm().
Remove some unused variables and add missing err.h include in sys_bsd.c
Diffstat (limited to 'usr.bin/telnet/sys_bsd.c')
-rw-r--r-- | usr.bin/telnet/sys_bsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/telnet/sys_bsd.c b/usr.bin/telnet/sys_bsd.c index e10977c729f..ba105592dad 100644 --- a/usr.bin/telnet/sys_bsd.c +++ b/usr.bin/telnet/sys_bsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sys_bsd.c,v 1.7 1999/05/07 18:29:07 deraadt Exp $ */ +/* $OpenBSD: sys_bsd.c,v 1.8 2000/10/10 15:41:10 millert Exp $ */ /* $NetBSD: sys_bsd.c,v 1.11 1996/02/28 21:04:10 thorpej Exp $ */ /* @@ -35,6 +35,7 @@ */ #include "telnet_locl.h" +#include <err.h> /* * The following routines try to encapsulate what is system dependent |