move the include sys/types.h xor stdbool.h to the top of the file,

so that "bool" will be present when used later in the file.
This commit is contained in:
mrg 2011-04-13 06:29:30 +00:00
parent 9d56ec39d7
commit a8fdd2914b
1 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.31 2011/02/24 15:42:17 jruoho Exp $ */
/* $NetBSD: cpu.h,v 1.32 2011/04/13 06:29:30 mrg Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -37,6 +37,12 @@
#ifndef _X86_CPU_H_
#define _X86_CPU_H_
#if defined(_KERNEL) || defined(_STANDALONE)
#include <sys/types.h>
#else
#include <stdbool.h>
#endif /* _KERNEL || _STANDALONE */
#if defined(_KERNEL) || defined(_KMEMUSER)
#if defined(_KERNEL_OPT)
#include "opt_xen.h"
@ -435,12 +441,6 @@ void x86_bus_space_mallocok(void);
#endif /* _KERNEL || __KMEMUSER */
#if defined(_KERNEL) || defined(_STANDALONE)
#include <sys/types.h>
#else
#include <stdbool.h>
#endif /* _KERNEL || _STANDALONE */
/*
* CTL_MACHDEP definitions.
*/