summaryrefslogtreecommitdiff
path: root/sys/kern/subr_prf.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/kern/subr_prf.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/kern/subr_prf.c')
-rw-r--r--sys/kern/subr_prf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c
index d48ac609c39..008902126c9 100644
--- a/sys/kern/subr_prf.c
+++ b/sys/kern/subr_prf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_prf.c,v 1.38 2002/01/23 15:46:48 art Exp $ */
+/* $OpenBSD: subr_prf.c,v 1.39 2002/03/14 01:27:04 millert Exp $ */
/* $NetBSD: subr_prf.c,v 1.45 1997/10/24 18:14:25 chuck Exp $ */
/*-
@@ -97,8 +97,8 @@ extern int uvm_doswapencrypt;
* local prototypes
*/
-int kprintf __P((const char *, int, void *, char *, va_list));
-void putchar __P((int, int, struct tty *));
+int kprintf(const char *, int, void *, char *, va_list);
+void putchar(int, int, struct tty *);
/*
@@ -137,7 +137,7 @@ int db_console = 0;
* [e.g. to a "virtual console"].
*/
-void (*v_putc) __P((int)) = cnputc; /* start with cnputc (normal cons) */
+void (*v_putc)(int) = cnputc; /* start with cnputc (normal cons) */
/*