aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_log.c
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/kern/subr_log.c
parentc5d593ae63737614194288420e647f53edbf5727 (diff)
downloadsrc-3ac4d1ef0cb63052d971dfb2c6ec0cfc0936bdce.tar.gz
src-3ac4d1ef0cb63052d971dfb2c6ec0cfc0936bdce.zip
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/kern/subr_log.c')
-rw-r--r--sys/kern/subr_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_log.c b/sys/kern/subr_log.c
index d76bd6cc6b1c..a2d31dd659b3 100644
--- a/sys/kern/subr_log.c
+++ b/sys/kern/subr_log.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)subr_log.c 8.1 (Berkeley) 6/10/93
- * $Id$
+ * $Id: subr_log.c,v 1.20 1997/02/22 09:39:16 peter Exp $
*/
/*
@@ -45,7 +45,7 @@
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/msgbuf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
#include <sys/signalvar.h>
#include <sys/kernel.h>
#ifdef DEVFS