cpu_fork changes type
authorderaadt <deraadt@openbsd.org>
Fri, 15 Dec 1995 02:24:42 +0000 (02:24 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 15 Dec 1995 02:24:42 +0000 (02:24 +0000)
sys/arch/mvme68k/mvme68k/vm_machdep.c

index 9135390..99de3b7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: vm_machdep.c,v 1.3 1995/11/28 01:24:42 deraadt Exp $ */
+/*     $Id: vm_machdep.c,v 1.4 1995/12/15 02:24:42 deraadt Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -66,7 +66,7 @@
  * address in each process; in the future we will probably relocate
  * the frame pointers on the stack after copying.
  */
-int
+void
 cpu_fork(p1, p2)
        register struct proc *p1, *p2;
 {
@@ -96,8 +96,6 @@ cpu_fork(p1, p2)
        pcb->pcb_regs[6] = (int)child_return;   /* A2 */
        pcb->pcb_regs[7] = (int)p2;             /* A3 */
        pcb->pcb_regs[11] = (int)sf;            /* SSP */
-
-       return (0);
 }
 
 void