diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-09-09 18:10:37 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-09-09 18:10:37 +0000 |
| commit | 4590fd3a2a5539b8a1ce2ad488707123c8b7c8c8 (patch) | |
| tree | 5c5482fdb7693aa63c9bbb6d03a18f671dc76e7a /sys/vm/vm_init.c | |
| parent | b1926d59c97b2d912be723280dded871c0e8d8c2 (diff) | |
Notes
Diffstat (limited to 'sys/vm/vm_init.c')
| -rw-r--r-- | sys/vm/vm_init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index ea41d949809b..ffe5daab9bda 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_init.c,v 1.7 1995/07/13 08:48:24 davidg Exp $ + * $Id: vm_init.c,v 1.8 1995/08/28 09:19:23 julian Exp $ */ /* @@ -81,7 +81,7 @@ * System initialization */ -static void vm_mem_init __P((caddr_t)); +static void vm_mem_init __P((void *)); SYSINIT(vm_mem, SI_SUB_VM, SI_ORDER_FIRST, vm_mem_init, NULL) /* @@ -93,8 +93,8 @@ SYSINIT(vm_mem, SI_SUB_VM, SI_ORDER_FIRST, vm_mem_init, NULL) /* ARGSUSED*/ static void -vm_mem_init( udata) -caddr_t udata; /* not used*/ +vm_mem_init(udata) + void *udata; /* not used*/ { /* * Initializes resident memory structures. From here on, all physical |
