diff options
author | dg <dg@FreeBSD.org> | 1995-12-07 12:48:31 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-12-07 12:48:31 +0000 |
commit | c30f46c534617c688a4773ed830c44daa04853ee (patch) | |
tree | 19b264d515a181824bd3abb5e342afa65102ff53 /sys/kern/tty.c | |
parent | 03382d7ccd5ed3c8bf17b6719df445c2d9c5dea6 (diff) | |
download | FreeBSD-src-c30f46c534617c688a4773ed830c44daa04853ee.zip FreeBSD-src-c30f46c534617c688a4773ed830c44daa04853ee.tar.gz |
Untangled the vm.h include file spaghetti.
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r-- | sys/kern/tty.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index d9c24e8..8756a0b 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.c 8.8 (Berkeley) 1/21/94 - * $Id: tty.c,v 1.70 1995/09/10 11:48:13 bde Exp $ + * $Id: tty.c,v 1.71 1995/10/31 19:27:50 bde Exp $ */ /*- @@ -91,6 +91,11 @@ #endif #include <vm/vm.h> +#include <vm/vm_param.h> +#include <vm/vm_prot.h> +#include <vm/lock.h> +#include <vm/pmap.h> +#include <vm/vm_map.h> static int proc_compare __P((struct proc *p1, struct proc *p2)); static int ttnread __P((struct tty *tp)); |