summaryrefslogtreecommitdiff
path: root/usr.bin/vi/common/options_f.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /usr.bin/vi/common/options_f.c
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'usr.bin/vi/common/options_f.c')
-rw-r--r--usr.bin/vi/common/options_f.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/usr.bin/vi/common/options_f.c b/usr.bin/vi/common/options_f.c
index f35cf078ad4..c290fb3e3ed 100644
--- a/usr.bin/vi/common/options_f.c
+++ b/usr.bin/vi/common/options_f.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options_f.c,v 1.5 2001/01/29 01:58:31 niklas Exp $ */
+/* $OpenBSD: options_f.c,v 1.6 2002/02/16 21:27:57 millert Exp $ */
/*-
* Copyright (c) 1993, 1994
@@ -31,7 +31,7 @@ static const char sccsid[] = "@(#)options_f.c 10.25 (Berkeley) 7/12/96";
#include "common.h"
/*
- * PUBLIC: int f_altwerase __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_altwerase(SCR *, OPTION *, char *, u_long *);
*/
int
f_altwerase(sp, op, str, valp)
@@ -46,7 +46,7 @@ f_altwerase(sp, op, str, valp)
}
/*
- * PUBLIC: int f_columns __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_columns(SCR *, OPTION *, char *, u_long *);
*/
int
f_columns(sp, op, str, valp)
@@ -80,7 +80,7 @@ f_columns(sp, op, str, valp)
}
/*
- * PUBLIC: int f_lines __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_lines(SCR *, OPTION *, char *, u_long *);
*/
int
f_lines(sp, op, str, valp)
@@ -137,7 +137,7 @@ f_lines(sp, op, str, valp)
}
/*
- * PUBLIC: int f_lisp __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_lisp(SCR *, OPTION *, char *, u_long *);
*/
int
f_lisp(sp, op, str, valp)
@@ -151,7 +151,7 @@ f_lisp(sp, op, str, valp)
}
/*
- * PUBLIC: int f_msgcat __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_msgcat(SCR *, OPTION *, char *, u_long *);
*/
int
f_msgcat(sp, op, str, valp)
@@ -165,7 +165,7 @@ f_msgcat(sp, op, str, valp)
}
/*
- * PUBLIC: int f_paragraph __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_paragraph(SCR *, OPTION *, char *, u_long *);
*/
int
f_paragraph(sp, op, str, valp)
@@ -183,7 +183,7 @@ f_paragraph(sp, op, str, valp)
}
/*
- * PUBLIC: int f_print __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_print(SCR *, OPTION *, char *, u_long *);
*/
int
f_print(sp, op, str, valp)
@@ -201,7 +201,7 @@ f_print(sp, op, str, valp)
}
/*
- * PUBLIC: int f_readonly __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_readonly(SCR *, OPTION *, char *, u_long *);
*/
int
f_readonly(sp, op, str, valp)
@@ -222,7 +222,7 @@ f_readonly(sp, op, str, valp)
}
/*
- * PUBLIC: int f_recompile __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_recompile(SCR *, OPTION *, char *, u_long *);
*/
int
f_recompile(sp, op, str, valp)
@@ -243,7 +243,7 @@ f_recompile(sp, op, str, valp)
}
/*
- * PUBLIC: int f_reformat __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_reformat(SCR *, OPTION *, char *, u_long *);
*/
int
f_reformat(sp, op, str, valp)
@@ -257,7 +257,7 @@ f_reformat(sp, op, str, valp)
}
/*
- * PUBLIC: int f_section __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_section(SCR *, OPTION *, char *, u_long *);
*/
int
f_section(sp, op, str, valp)
@@ -275,7 +275,7 @@ f_section(sp, op, str, valp)
}
/*
- * PUBLIC: int f_ttywerase __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_ttywerase(SCR *, OPTION *, char *, u_long *);
*/
int
f_ttywerase(sp, op, str, valp)
@@ -290,7 +290,7 @@ f_ttywerase(sp, op, str, valp)
}
/*
- * PUBLIC: int f_w300 __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_w300(SCR *, OPTION *, char *, u_long *);
*/
int
f_w300(sp, op, str, valp)
@@ -311,7 +311,7 @@ f_w300(sp, op, str, valp)
}
/*
- * PUBLIC: int f_w1200 __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_w1200(SCR *, OPTION *, char *, u_long *);
*/
int
f_w1200(sp, op, str, valp)
@@ -332,7 +332,7 @@ f_w1200(sp, op, str, valp)
}
/*
- * PUBLIC: int f_w9600 __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_w9600(SCR *, OPTION *, char *, u_long *);
*/
int
f_w9600(sp, op, str, valp)
@@ -353,7 +353,7 @@ f_w9600(sp, op, str, valp)
}
/*
- * PUBLIC: int f_window __P((SCR *, OPTION *, char *, u_long *));
+ * PUBLIC: int f_window(SCR *, OPTION *, char *, u_long *);
*/
int
f_window(sp, op, str, valp)