diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/uvm/uvm_stat.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/uvm/uvm_stat.c')
-rw-r--r-- | sys/uvm/uvm_stat.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/uvm/uvm_stat.c b/sys/uvm/uvm_stat.c index 92cda53ccc3..ac5546eb6fc 100644 --- a/sys/uvm/uvm_stat.c +++ b/sys/uvm/uvm_stat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_stat.c,v 1.12 2002/01/02 22:22:03 miod Exp $ */ +/* $OpenBSD: uvm_stat.c,v 1.13 2002/03/14 01:27:19 millert Exp $ */ /* $NetBSD: uvm_stat.c,v 1.18 2001/03/09 01:02:13 chs Exp $ */ /* @@ -66,11 +66,11 @@ int uvmhist_print_enabled = 1; */ #ifdef UVMHIST -void uvmhist_dump __P((struct uvm_history *)); -void uvm_hist __P((u_int32_t)); -static void uvmhist_dump_histories __P((struct uvm_history *[])); +void uvmhist_dump(struct uvm_history *); +void uvm_hist(u_int32_t); +static void uvmhist_dump_histories(struct uvm_history *[]); #endif -void uvmcnt_dump __P((void)); +void uvmcnt_dump(void); #ifdef UVMHIST @@ -206,7 +206,7 @@ uvmcnt_dump() * uvmexp_print: ddb hook to print interesting uvm counters */ void -uvmexp_print(int (*pr) __P((const char *, ...))) +uvmexp_print(int (*pr)(const char *, ...)) { (*pr)("Current UVM status:\n"); |