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_anon.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/uvm/uvm_anon.h')
-rw-r--r-- | sys/uvm/uvm_anon.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/uvm/uvm_anon.h b/sys/uvm/uvm_anon.h index 702b5dc4e62..3554e27b3de 100644 --- a/sys/uvm/uvm_anon.h +++ b/sys/uvm/uvm_anon.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_anon.h,v 1.10 2001/12/19 08:58:07 art Exp $ */ +/* $OpenBSD: uvm_anon.h,v 1.11 2002/03/14 01:27:18 millert Exp $ */ /* $NetBSD: uvm_anon.h,v 1.13 2000/12/27 09:17:04 chs Exp $ */ /* @@ -99,14 +99,14 @@ struct vm_aref { * prototypes */ -struct vm_anon *uvm_analloc __P((void)); -void uvm_anfree __P((struct vm_anon *)); -void uvm_anon_init __P((void)); -int uvm_anon_add __P((int)); -void uvm_anon_remove __P((int)); -struct vm_page *uvm_anon_lockloanpg __P((struct vm_anon *)); -void uvm_anon_dropswap __P((struct vm_anon *)); -boolean_t anon_swap_off __P((int, int)); +struct vm_anon *uvm_analloc(void); +void uvm_anfree(struct vm_anon *); +void uvm_anon_init(void); +int uvm_anon_add(int); +void uvm_anon_remove(int); +struct vm_page *uvm_anon_lockloanpg(struct vm_anon *); +void uvm_anon_dropswap(struct vm_anon *); +boolean_t anon_swap_off(int, int); #endif /* _KERNEL */ #endif /* _UVM_UVM_ANON_H_ */ |