diff options
author | Bruce Evans <bde@FreeBSD.org> | 1995-07-16 10:13:08 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1995-07-16 10:13:08 +0000 |
commit | 97e156674d06868114bb51c03e2b3e08a686f0af (patch) | |
tree | c76b3e68271dcaaff69bea8d4467eaa0cc4bd913 /sys/fs | |
parent | 8f26c8ef60204c5520e8a83f49bfa06114252a45 (diff) | |
download | src-97e156674d06868114bb51c03e2b3e08a686f0af.tar.gz src-97e156674d06868114bb51c03e2b3e08a686f0af.zip |
Don't include <sys/tty.h> in drivers that aren't tty drivers or in general
files that don't depend on the internals of <sys/tty.h>
Notes
Notes:
svn path=/head/; revision=9540
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/procfs/procfs_ctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/fs/procfs/procfs_ctl.c b/sys/fs/procfs/procfs_ctl.c index 5befe23d576d..dc4d5e50ded7 100644 --- a/sys/fs/procfs/procfs_ctl.c +++ b/sys/fs/procfs/procfs_ctl.c @@ -36,7 +36,7 @@ * * @(#)procfs_ctl.c 8.3 (Berkeley) 1/21/94 * - * $Id: procfs_ctl.c,v 1.4 1995/02/20 15:53:32 davidg Exp $ + * $Id: procfs_ctl.c,v 1.5 1995/03/16 18:13:46 bde Exp $ */ #include <sys/param.h> @@ -46,7 +46,6 @@ #include <sys/proc.h> #include <sys/vnode.h> #include <sys/ioctl.h> -#include <sys/tty.h> #include <sys/ptrace.h> #include <sys/resource.h> #include <sys/resourcevar.h> |