diff options
author | David Greenman <dg@FreeBSD.org> | 1995-10-21 08:38:13 +0000 |
---|---|---|
committer | David Greenman <dg@FreeBSD.org> | 1995-10-21 08:38:13 +0000 |
commit | 079cc25b11ee2a296f306fe323cc8be2e28dfecf (patch) | |
tree | ba4401b223195297fbb10079745e87d33d98e999 | |
parent | fc370289ab027706cbc28a2dd365daea81abaa2f (diff) | |
download | src-079cc25b11ee2a296f306fe323cc8be2e28dfecf.tar.gz src-079cc25b11ee2a296f306fe323cc8be2e28dfecf.zip |
Killed a few gratuitous #include's.
Notes
Notes:
svn path=/head/; revision=11607
-rw-r--r-- | sys/kern/kern_descrip.c | 4 | ||||
-rw-r--r-- | sys/kern/kern_exec.c | 4 | ||||
-rw-r--r-- | sys/kern/subr_rlist.c | 4 |
3 files changed, 4 insertions, 8 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index 2f1ad242ffa4..39cda9d76768 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94 - * $Id: kern_descrip.c,v 1.10 1995/05/30 08:05:21 rgrimes Exp $ + * $Id: kern_descrip.c,v 1.11 1995/10/08 00:06:00 swallace Exp $ */ #include <sys/param.h> @@ -52,10 +52,8 @@ #include <sys/ioctl.h> #include <sys/fcntl.h> #include <sys/malloc.h> -#include <sys/syslog.h> #include <sys/unistd.h> #include <sys/resourcevar.h> -#include <vm/vm.h> int finishdup(struct filedesc *fdp, int old, int new, int *retval); /* diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index cf8a38f59983..eb956f5d5ff0 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_exec.c,v 1.22 1995/08/24 10:32:37 davidg Exp $ + * $Id: kern_exec.c,v 1.23 1995/10/08 00:06:01 swallace Exp $ */ #include <sys/param.h> @@ -37,7 +37,7 @@ #include <sys/kernel.h> #include <sys/mount.h> #include <sys/filedesc.h> -#include <sys/file.h> +#include <sys/fcntl.h> #include <sys/acct.h> #include <sys/exec.h> #include <sys/imgact.h> diff --git a/sys/kern/subr_rlist.c b/sys/kern/subr_rlist.c index 0bc6f4cc4eb5..b0cc05f60d27 100644 --- a/sys/kern/subr_rlist.c +++ b/sys/kern/subr_rlist.c @@ -54,18 +54,16 @@ * functioning of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: subr_rlist.c,v 1.9 1995/03/16 18:12:41 bde Exp $ + * $Id: subr_rlist.c,v 1.10 1995/05/30 08:05:54 rgrimes Exp $ */ #include <sys/param.h> #include <sys/systm.h> -#include <sys/cdefs.h> #include <sys/malloc.h> #include <sys/rlist.h> #include <sys/proc.h> #include <vm/vm.h> #include <vm/vm_kern.h> -#include <vm/vm_map.h> /* * Resource lists. |