Added missing prototypes from <sys/cpu.h>

This commit is contained in:
christos 1996-04-23 12:25:23 +00:00
parent df8c6afda1
commit a818b81625
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_extern.h,v 1.19 1996/02/10 00:08:05 christos Exp $ */
/* $NetBSD: vm_extern.h,v 1.20 1996/04/23 12:25:23 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -136,10 +136,17 @@ void vsunlock __P((caddr_t, u_int));
void vmapbuf __P((struct buf *, vm_size_t));
void vunmapbuf __P((struct buf *, vm_size_t));
void remrq __P((struct proc *));
void pagemove __P((caddr_t, caddr_t, size_t));
#ifdef __FORK_BRAINDAMAGE
int cpu_fork __P((struct proc *, struct proc *));
#else
void cpu_fork __P((struct proc *, struct proc *));
#endif
#ifndef cpu_swapin
void cpu_swapin __P((struct proc *));
#endif
#ifndef cpu_swapout
void cpu_swapout __P((struct proc *));
#endif
#endif