aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/lfs
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-03-23 03:37:54 +0000
committerBruce Evans <bde@FreeBSD.org>1997-03-23 03:37:54 +0000
commit3ac4d1ef0cb63052d971dfb2c6ec0cfc0936bdce (patch)
treed5362cd33818510de25aca3387c5ff2e95430292 /sys/ufs/lfs
parentc5d593ae63737614194288420e647f53edbf5727 (diff)
Don't #include <sys/fcntl.h> in <sys/file.h> if KERNEL is defined.
Fixed everything that depended on getting fcntl.h stuff from the wrong place. Most things don't depend on file.h stuff at all.
Notes
Notes: svn path=/head/; revision=24131
Diffstat (limited to 'sys/ufs/lfs')
-rw-r--r--sys/ufs/lfs/lfs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/lfs/lfs_vfsops.c b/sys/ufs/lfs/lfs_vfsops.c
index 265a580978f7..0b85cdd9d18c 100644
--- a/sys/ufs/lfs/lfs_vfsops.c
+++ b/sys/ufs/lfs/lfs_vfsops.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)lfs_vfsops.c 8.20 (Berkeley) 6/10/95
- * $Id: lfs_vfsops.c,v 1.16 1997/02/22 09:47:25 peter Exp $
+ * $Id: lfs_vfsops.c,v 1.17 1997/03/23 00:45:23 bde Exp $
*/
#include "opt_quota.h"
@@ -45,7 +45,7 @@
#include <sys/mount.h>
#include <sys/buf.h>
#include <sys/mbuf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/errno.h>