from netbsd; cpu_fork changes types
authorderaadt <deraadt@openbsd.org>
Fri, 15 Dec 1995 01:57:26 +0000 (01:57 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 15 Dec 1995 01:57:26 +0000 (01:57 +0000)
sys/arch/amiga/amiga/vm_machdep.c

index c52b70b..e85b1cd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm_machdep.c,v 1.24 1995/08/18 15:27:41 chopps Exp $   */
+/*     $NetBSD: vm_machdep.c,v 1.25 1995/12/09 04:37:30 mycroft Exp $  */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -68,6 +68,7 @@
  * address in each process; in the future we will probably relocate
  * the frame pointers on the stack after copying.
  */
+void
 cpu_fork(p1, p2)
        register struct proc *p1, *p2;
 {
@@ -97,8 +98,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);
 }
 
 /*