Only include <sys/systm.h> if _KERNEL is defined.

This commit is contained in:
simonb 2005-10-30 23:34:04 +00:00
parent 82543d8598
commit 1d1300cd80
2 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_subr.c,v 1.61 2005/06/28 00:28:42 thorpej Exp $ */
/* $NetBSD: pci_subr.c,v 1.62 2005/10/30 23:34:04 simonb Exp $ */
/*
* Copyright (c) 1997 Zubin D. Dittia. All rights reserved.
@ -40,16 +40,16 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.61 2005/06/28 00:28:42 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.62 2005/10/30 23:34:04 simonb Exp $");
#ifdef _KERNEL_OPT
#include "opt_pci.h"
#endif
#include <sys/param.h>
#include <sys/systm.h>
#ifdef _KERNEL
#include <sys/systm.h>
#include <machine/intr.h>
#else
#include <pci.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ext2fs_bswap.c,v 1.9 2005/08/30 22:01:12 xtraeme Exp $ */
/* $NetBSD: ext2fs_bswap.c,v 1.10 2005/10/30 23:34:04 simonb Exp $ */
/*
* Copyright (c) 1997 Manuel Bouyer.
@ -31,14 +31,15 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ext2fs_bswap.c,v 1.9 2005/08/30 22:01:12 xtraeme Exp $");
__KERNEL_RCSID(0, "$NetBSD: ext2fs_bswap.c,v 1.10 2005/10/30 23:34:04 simonb Exp $");
#include <sys/types.h>
#include <sys/systm.h>
#include <ufs/ext2fs/ext2fs.h>
#include <ufs/ext2fs/ext2fs_dinode.h>
#if !defined(_KERNEL)
#if defined(_KERNEL)
#include <sys/systm.h>
#else
#include <string.h>
#endif