diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-11-12 06:43:28 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-11-12 06:43:28 +0000 |
| commit | d2d3e8751c3b7831f7064ccf400978b75b696547 (patch) | |
| tree | 2f26975a8fd164c9658b820d74c731c86cbb9e18 /sys/vm/vm_unix.c | |
| parent | 2f1ba63ba85a5689771dc1294c47ecef2c2c9a23 (diff) | |
Notes
Diffstat (limited to 'sys/vm/vm_unix.c')
| -rw-r--r-- | sys/vm/vm_unix.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c index 49b440509faa..9d2668dc03c6 100644 --- a/sys/vm/vm_unix.c +++ b/sys/vm/vm_unix.c @@ -38,7 +38,7 @@ * from: Utah $Hdr: vm_unix.c 1.1 89/11/07$ * * @(#)vm_unix.c 8.1 (Berkeley) 6/11/93 - * $Id: vm_unix.c,v 1.6 1995/10/07 19:02:56 davidg Exp $ + * $Id: vm_unix.c,v 1.7 1995/11/11 06:40:35 bde Exp $ */ /* @@ -46,15 +46,18 @@ */ #include <sys/param.h> #include <sys/systm.h> +#include <sys/sysproto.h> #include <sys/proc.h> #include <sys/resourcevar.h> #include <vm/vm.h> #include <vm/swap_pager.h> +#ifndef _SYS_SYSPROTO_H_ struct obreak_args { char *nsize; }; +#endif /* ARGSUSED */ int @@ -94,9 +97,11 @@ obreak(p, uap, retval) return (0); } +#ifndef _SYS_SYSPROTO_H_ struct ovadvise_args { int anom; }; +#endif /* ARGSUSED */ int |
