diff options
author | bde <bde@FreeBSD.org> | 1995-07-16 10:13:08 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-16 10:13:08 +0000 |
commit | 81e1e32f6c0662907cdbde6c1f5269cf8217838c (patch) | |
tree | c76b3e68271dcaaff69bea8d4467eaa0cc4bd913 /sys/net/bpf.c | |
parent | 694c4272848a2eb83621679c60812e3cbf1df6b2 (diff) | |
download | FreeBSD-src-81e1e32f6c0662907cdbde6c1f5269cf8217838c.zip FreeBSD-src-81e1e32f6c0662907cdbde6c1f5269cf8217838c.tar.gz |
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>
Diffstat (limited to 'sys/net/bpf.c')
-rw-r--r-- | sys/net/bpf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index d99e89f..af05e83 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -37,7 +37,7 @@ * * @(#)bpf.c 8.2 (Berkeley) 3/28/94 * - * $Id: bpf.c,v 1.7 1995/05/30 08:07:50 rgrimes Exp $ + * $Id: bpf.c,v 1.8 1995/06/15 18:10:57 pst Exp $ */ #include "bpfilter.h" @@ -63,7 +63,6 @@ #if defined(sparc) && BSD < 199103 #include <sys/stream.h> #endif -#include <sys/tty.h> #include <sys/uio.h> #include <sys/protosw.h> |