diff options
Diffstat (limited to 'usr.bin/vi/cl/cl_term.c')
-rw-r--r-- | usr.bin/vi/cl/cl_term.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/usr.bin/vi/cl/cl_term.c b/usr.bin/vi/cl/cl_term.c index 69d1cfc6c9b..db64b6b68da 100644 --- a/usr.bin/vi/cl/cl_term.c +++ b/usr.bin/vi/cl/cl_term.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl_term.c,v 1.16 2009/10/27 23:59:47 deraadt Exp $ */ +/* $OpenBSD: cl_term.c,v 1.17 2014/11/06 10:48:52 bentley Exp $ */ /*- * Copyright (c) 1993, 1994 @@ -447,20 +447,6 @@ noterm: if (row == 0) return (0); } -#ifdef _USE_OLD_CURSES_ -/* - * cl_putchar -- - * Function version of putchar, for tputs. - * - * PUBLIC: int cl_putchar(int); - */ -void -cl_putchar(ch) - int ch; -{ - (void)putchar(ch); -} -#else /* * cl_putchar -- * Function version of putchar, for tputs. @@ -473,4 +459,3 @@ cl_putchar(ch) { return (putchar(ch)); } -#endif |