lint, KNF
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Wed, 5 Jan 1994 14:25:44 +0000 (06:25 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Wed, 5 Jan 1994 14:25:44 +0000 (06:25 -0800)
SCCS-vsn: sys/hp300/hp300/pmap.c 8.3

usr/src/sys/hp300/hp300/pmap.c

index 66b7478..faeb78e 100644 (file)
@@ -8,7 +8,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)pmap.c      8.2 (Berkeley) %G%
+ *     @(#)pmap.c      8.3 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -282,10 +282,11 @@ void pmap_check_wiring    __P((char *, vm_offset_t));
  * memory will never be freed, and in essence it is wired down.
  */
 void *
  * memory will never be freed, and in essence it is wired down.
  */
 void *
-pmap_bootstrap_alloc(size) {
-       vm_offset_t val;
-       int i;
+pmap_bootstrap_alloc(size)
+       int size;
+{
        extern boolean_t vm_page_startup_initialized;
        extern boolean_t vm_page_startup_initialized;
+       vm_offset_t val;
        
        if (vm_page_startup_initialized)
                panic("pmap_bootstrap_alloc: called after startup initialized");
        
        if (vm_page_startup_initialized)
                panic("pmap_bootstrap_alloc: called after startup initialized");