proto nicely
authorderaadt <deraadt@openbsd.org>
Sat, 4 May 1996 16:07:47 +0000 (16:07 +0000)
committerderaadt <deraadt@openbsd.org>
Sat, 4 May 1996 16:07:47 +0000 (16:07 +0000)
sys/arch/mvme68k/mvme68k/disksubr.c
sys/arch/mvme68k/mvme68k/machdep.c
sys/arch/mvme68k/mvme68k/vm_machdep.c

index 02ccac9..760bb0d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: disksubr.c,v 1.4 1996/04/28 10:58:59 deraadt Exp $ */
+/*     $OpenBSD: disksubr.c,v 1.5 1996/05/04 16:07:47 deraadt Exp $ */
 
 /*
  * Copyright (c) 1995 Dale Rahn.
@@ -52,12 +52,11 @@ static void printlp __P((struct disklabel *lp, char *str));
 static void printclp __P((struct cpu_disklabel *clp, char *str));
 #endif
 
-int
+void
 dk_establish(dk, dev)
        struct disk *dk;
        struct device *dev;
 {
-       return(-1);
 }
 
 /*
index 219f548..fdf119f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.7 1996/04/28 10:59:02 deraadt Exp $ */
+/*     $OpenBSD: machdep.c,v 1.8 1996/05/04 16:07:49 deraadt Exp $ */
 
 /*
  * Copyright (c) 1995 Theo de Raadt
@@ -160,6 +160,7 @@ extern struct emul emul_sunos;
  * before vm init or startup.  Do enough configuration
  * to choose and initialize a console.
  */
+void
 consinit()
 {
 
@@ -1093,8 +1094,6 @@ boot(howto)
        splhigh();                      /* extreme priority */
        if (howto&RB_HALT) {
                printf("halted\n\n");
-               while (1)
-                       ;
        } else {
                struct haltvec *hv;
 
@@ -1104,6 +1103,8 @@ boot(howto)
                        (*hv->hv_fn)();
                doboot();
        }
+       while (1)
+               ;
        /*NOTREACHED*/
 }
 
index fa64557..d3cd225 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vm_machdep.c,v 1.5 1996/04/28 10:57:03 deraadt Exp $ */
+/*     $OpenBSD: vm_machdep.c,v 1.6 1996/05/04 16:07:50 deraadt Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -101,10 +101,10 @@ cpu_fork(p1, p2)
 void
 cpu_set_kpc(p, pc)
        struct proc *p;
-       u_long pc;
+       void (*pc) __P((struct proc *));
 {
 
-       p->p_addr->u_pcb.pcb_regs[6] = pc;      /* A2 */
+       p->p_addr->u_pcb.pcb_regs[6] = (int)pc; /* A2 */
 }
 
 /*
@@ -139,10 +139,11 @@ cpu_cleanup(p)
  * Dump the machine specific header information at the start of a core dump.
  */
 int
-cpu_coredump(p, vp, cred)
+cpu_coredump(p, vp, cred, chdr)
        struct proc *p;
        struct vnode *vp;
        struct ucred *cred;
+       struct core *chdr;
 {
 
 #ifdef COMPAT_HPUX
@@ -166,9 +167,10 @@ cpu_coredump(p, vp, cred)
  * Both addresses are assumed to reside in the Sysmap,
  * and size must be a multiple of CLSIZE.
  */
+void
 pagemove(from, to, size)
-       register caddr_t from, to;
-       int size;
+       caddr_t from, to;
+       size_t size;
 {
        register vm_offset_t pa;