diff options
Diffstat (limited to 'sys/vm/vm_extern.h')
| -rw-r--r-- | sys/vm/vm_extern.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h index 34deba7d0f78..ca5a53e9f186 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.37 1998/01/22 17:30:32 dyson Exp $ + * $Id: vm_extern.h,v 1.38 1998/06/07 17:13:09 dfr Exp $ */ #ifndef _VM_EXTERN_H_ @@ -61,7 +61,11 @@ int swapon __P((struct proc *, void *, int *)); #endif void faultin __P((struct proc *p)); +#ifndef VM_STACK int grow __P((struct proc *, size_t)); +#else +int grow_stack __P((struct proc *, size_t)); +#endif int kernacc __P((caddr_t, int, int)); vm_offset_t kmem_alloc __P((vm_map_t, vm_size_t)); vm_offset_t kmem_alloc_pageable __P((vm_map_t, vm_size_t)); |
