diff options
author | peter <peter@FreeBSD.org> | 1999-04-13 19:17:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-04-13 19:17:15 +0000 |
commit | dfdcc6233207986cb1e4fdc12bd940925c5f19c6 (patch) | |
tree | 54d22f26d3346580a4a483361f2b43525adefade /sys/vm/vm_extern.h | |
parent | 4c7fabcc47b199f832f75fd4224179bf6cdb7961 (diff) | |
download | FreeBSD-src-dfdcc6233207986cb1e4fdc12bd940925c5f19c6.zip FreeBSD-src-dfdcc6233207986cb1e4fdc12bd940925c5f19c6.tar.gz |
Move the declaration of faultin() from the vm headers to proc.h, since
it is now referenced from a macro there (PHOLD()).
Diffstat (limited to 'sys/vm/vm_extern.h')
-rw-r--r-- | sys/vm/vm_extern.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h index 69a5ebb..544ff30 100644 --- a/sys/vm/vm_extern.h +++ b/sys/vm/vm_extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_extern.h 8.2 (Berkeley) 1/12/94 - * $Id: vm_extern.h,v 1.39 1999/01/06 23:05:41 julian Exp $ + * $Id: vm_extern.h,v 1.40 1999/01/26 02:49:52 julian Exp $ */ #ifndef _VM_EXTERN_H_ @@ -60,7 +60,6 @@ int sstk __P((struct proc *, void *, int *)); int swapon __P((struct proc *, void *, int *)); #endif -void faultin __P((struct proc *p)); int grow __P((struct proc *, size_t)); int grow_stack __P((struct proc *, size_t)); int kernacc __P((caddr_t, int, int)); |