diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-03-20 15:19:05 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-03-20 15:19:05 +0000 |
commit | 1cec66db340b5071320225ab7544cf7d5891842f (patch) | |
tree | 22b949af148fe1ed4ff4f59bdb4179edd3211d0e /sys/uvm/uvm_init.c | |
parent | 8f59db0d17f07fc6ce24afa8af4713c585ef09a0 (diff) |
While working on some stuff in uvm I've gotten REALLY sick of reading
K&R function declarations, so switch them all over to ansi-style, in
accordance with the prophesy.
"go for it" art@
Diffstat (limited to 'sys/uvm/uvm_init.c')
-rw-r--r-- | sys/uvm/uvm_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_init.c b/sys/uvm/uvm_init.c index 75b7bde3a45..82bbb31e780 100644 --- a/sys/uvm/uvm_init.c +++ b/sys/uvm/uvm_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_init.c,v 1.19 2008/11/24 19:19:46 kurt Exp $ */ +/* $OpenBSD: uvm_init.c,v 1.20 2009/03/20 15:19:04 oga Exp $ */ /* $NetBSD: uvm_init.c,v 1.14 2000/06/27 17:29:23 mrg Exp $ */ /* @@ -68,7 +68,7 @@ struct uvmexp uvmexp; /* decl */ */ void -uvm_init() +uvm_init(void) { vaddr_t kvm_start, kvm_end; |