summaryrefslogtreecommitdiffstats
path: root/usr.bin/vi/vi/v_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/vi/vi/v_util.c')
-rw-r--r--usr.bin/vi/vi/v_util.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/vi/vi/v_util.c b/usr.bin/vi/vi/v_util.c
index 8b4cd231e9d..39fd1217c2b 100644
--- a/usr.bin/vi/vi/v_util.c
+++ b/usr.bin/vi/vi/v_util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: v_util.c,v 1.4 2001/01/29 01:58:53 niklas Exp $ */
+/* $OpenBSD: v_util.c,v 1.5 2002/02/16 21:27:58 millert Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@@ -34,7 +34,7 @@ static const char sccsid[] = "@(#)v_util.c 10.11 (Berkeley) 6/30/96";
* v_eof --
* Vi end-of-file error.
*
- * PUBLIC: void v_eof __P((SCR *, MARK *));
+ * PUBLIC: void v_eof(SCR *, MARK *);
*/
void
v_eof(sp, mp)
@@ -59,7 +59,7 @@ v_eof(sp, mp)
* v_eol --
* Vi end-of-line error.
*
- * PUBLIC: void v_eol __P((SCR *, MARK *));
+ * PUBLIC: void v_eol(SCR *, MARK *);
*/
void
v_eol(sp, mp)
@@ -84,7 +84,7 @@ v_eol(sp, mp)
* v_nomove --
* Vi no cursor movement error.
*
- * PUBLIC: void v_nomove __P((SCR *));
+ * PUBLIC: void v_nomove(SCR *);
*/
void
v_nomove(sp)
@@ -97,7 +97,7 @@ v_nomove(sp)
* v_sof --
* Vi start-of-file error.
*
- * PUBLIC: void v_sof __P((SCR *, MARK *));
+ * PUBLIC: void v_sof(SCR *, MARK *);
*/
void
v_sof(sp, mp)
@@ -114,7 +114,7 @@ v_sof(sp, mp)
* v_sol --
* Vi start-of-line error.
*
- * PUBLIC: void v_sol __P((SCR *));
+ * PUBLIC: void v_sol(SCR *);
*/
void
v_sol(sp)
@@ -127,7 +127,7 @@ v_sol(sp)
* v_isempty --
* Return if the line contains nothing but white-space characters.
*
- * PUBLIC: int v_isempty __P((char *, size_t));
+ * PUBLIC: int v_isempty(char *, size_t);
*/
int
v_isempty(p, len)
@@ -144,7 +144,7 @@ v_isempty(p, len)
* v_emsg --
* Display a few common vi messages.
*
- * PUBLIC: void v_emsg __P((SCR *, char *, vim_t));
+ * PUBLIC: void v_emsg(SCR *, char *, vim_t);
*/
void
v_emsg(sp, p, which)