diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:07:43 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:07:43 +0000 |
commit | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (patch) | |
tree | a476c71bd9301205f613b5ff394fc6d9da596b87 /usr.bin/vi/cl/cl_term.c | |
parent | 30ccdeeff34f8e3eec2205b58637d47f40e5523d (diff) |
-D_USE_OLD_CURSE_ for -locurses and no more -ltermlib/termcap
Diffstat (limited to 'usr.bin/vi/cl/cl_term.c')
-rw-r--r-- | usr.bin/vi/cl/cl_term.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/vi/cl/cl_term.c b/usr.bin/vi/cl/cl_term.c index a86b9924b00..7d7661f870f 100644 --- a/usr.bin/vi/cl/cl_term.c +++ b/usr.bin/vi/cl/cl_term.c @@ -21,11 +21,7 @@ static const char sccsid[] = "@(#)cl_term.c 10.22 (Berkeley) 9/15/96"; #include <bitstring.h> #include <errno.h> #include <limits.h> -#ifdef USE_OCURSES -#include <ocurses.h> -#else #include <curses.h> -#endif #include <signal.h> #include <stdio.h> #include <stdlib.h> @@ -451,7 +447,7 @@ noterm: if (row == 0) return (0); } -#ifdef USE_OCURSES +#ifdef _USE_OLD_CURSES_ /* * cl_putchar -- * Function version of putchar, for tputs. |