diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-03-23 03:37:54 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-03-23 03:37:54 +0000 |
commit | 3ac4d1ef0cb63052d971dfb2c6ec0cfc0936bdce (patch) | |
tree | d5362cd33818510de25aca3387c5ff2e95430292 /sys/i386/isa/cy.c | |
parent | c5d593ae63737614194288420e647f53edbf5727 (diff) | |
download | src-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/i386/isa/cy.c')
-rw-r--r-- | sys/i386/isa/cy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/cy.c b/sys/i386/isa/cy.c index 1bbc540060ab..54443dc1e264 100644 --- a/sys/i386/isa/cy.c +++ b/sys/i386/isa/cy.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: cy.c,v 1.45 1997/02/22 09:36:03 peter Exp $ */ #include "cy.h" @@ -76,7 +76,7 @@ #include <sys/proc.h> #include <sys/conf.h> #include <sys/dkstat.h> -#include <sys/file.h> +#include <sys/fcntl.h> #include <sys/uio.h> #include <sys/kernel.h> #include <sys/malloc.h> |