diff options
author | bde <bde@FreeBSD.org> | 1997-08-02 14:33:27 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-08-02 14:33:27 +0000 |
commit | 9195bd1ec7d7d8d8239de6a1eb75124aa8307f1f (patch) | |
tree | 9c6abeea2159a31b9e536051714351e3abfe9989 /sys/vm | |
parent | b6f496a4ab1dbf77dccbdc672e9d9cd294a36b99 (diff) | |
download | FreeBSD-src-9195bd1ec7d7d8d8239de6a1eb75124aa8307f1f.zip FreeBSD-src-9195bd1ec7d7d8d8239de6a1eb75124aa8307f1f.tar.gz |
Removed unused #includes.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_init.c | 5 | ||||
-rw-r--r-- | sys/vm/vm_kern.c | 6 | ||||
-rw-r--r-- | sys/vm/vm_unix.c | 3 |
3 files changed, 3 insertions, 11 deletions
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index bc0c132..b3fc583 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $Id: vm_init.c,v 1.15 1997/02/22 09:48:20 peter Exp $ */ /* @@ -71,16 +71,13 @@ #include <sys/param.h> #include <sys/kernel.h> #include <sys/systm.h> -#include <sys/queue.h> #include <vm/vm.h> -#include <vm/vm_param.h> #include <vm/vm_prot.h> #include <sys/lock.h> #include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_map.h> -#include <vm/vm_kern.h> #include <vm/vm_pager.h> #include <vm/vm_extern.h> diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c index 2fa675d..ea1165b 100644 --- a/sys/vm/vm_kern.c +++ b/sys/vm/vm_kern.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.c,v 1.36 1997/05/29 02:57:22 peter Exp $ + * $Id: vm_kern.c,v 1.37 1997/06/22 15:47:11 peter Exp $ */ /* @@ -70,12 +70,9 @@ #include <sys/param.h> #include <sys/systm.h> -#include <sys/kernel.h> #include <sys/proc.h> #include <sys/malloc.h> #include <sys/syslog.h> -#include <sys/queue.h> -#include <sys/vmmeter.h> #include <vm/vm.h> #include <vm/vm_param.h> @@ -86,7 +83,6 @@ #include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_pageout.h> -#include <vm/vm_kern.h> #include <vm/vm_extern.h> vm_map_t kernel_map=0; diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c index e9fbff5..5dbfd5f 100644 --- a/sys/vm/vm_unix.c +++ b/sys/vm/vm_unix.c @@ -38,14 +38,13 @@ * from: Utah $Hdr: vm_unix.c 1.1 89/11/07$ * * @(#)vm_unix.c 8.1 (Berkeley) 6/11/93 - * $Id$ + * $Id: vm_unix.c,v 1.14 1997/02/22 09:48:40 peter Exp $ */ /* * Traditional sbrk/grow interface to VM */ #include <sys/param.h> -#include <sys/systm.h> #include <sys/sysproto.h> #include <sys/proc.h> #include <sys/resourcevar.h> |