diff options
author | bde <bde@FreeBSD.org> | 1997-03-24 11:25:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-24 11:25:10 +0000 |
commit | 117209856b858251ebd6fec048828125547e131f (patch) | |
tree | cdfa8045b602d9fd34543286b914f01f4b9ddc6e /sys/ufs/ffs | |
parent | 2652de9da3ad6362e6f6db93daf108da125fadf4 (diff) | |
download | FreeBSD-src-117209856b858251ebd6fec048828125547e131f.zip FreeBSD-src-117209856b858251ebd6fec048828125547e131f.tar.gz |
Don't include <sys/ioctl.h> in the kernel. Stage 1: don't include
it when it is not used. In most cases, the reasons for including it
went away when the special ioctl headers became self-sufficient.
Diffstat (limited to 'sys/ufs/ffs')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 31c5486..e552c7e 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95 - * $Id: ffs_vfsops.c,v 1.50 1997/03/23 03:37:34 bde Exp $ + * $Id: ffs_vfsops.c,v 1.51 1997/03/23 20:08:19 guido Exp $ */ #include "opt_quota.h" @@ -48,7 +48,6 @@ #include <sys/mbuf.h> #include <sys/fcntl.h> #include <sys/disklabel.h> -#include <sys/ioctl.h> #include <sys/errno.h> #include <sys/malloc.h> |