On 05/19/2011 09:17 AM, Avi Kivity wrote:
My mother always told me to explicitly #include any headers need to compile
a file, instead of relying on other #includes to bring them in. This patch
fixes up targphys.h and cpu-common.h in this regard.
Signed-off-by: Avi Kivity<a...@redhat.com>
---
cpu-common.h | 4 ++++
targphys.h | 2 ++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/cpu-common.h b/cpu-common.h
index 151c32c..2009adc 100644
--- a/cpu-common.h
+++ b/cpu-common.h
@@ -18,6 +18,10 @@
#include "bswap.h"
#include "qemu-queue.h"
+#include "qemu-common.h"
+
+#include<stdbool.h>
qemu-common.h should include stdbool.
The idea behind qemu-common.h is to avoid direct includes to help with
portability.
Regards,
Anthony Liguori
+
#if !defined(CONFIG_USER_ONLY)
enum device_endian {
diff --git a/targphys.h b/targphys.h
index 95648d6..501add2 100644
--- a/targphys.h
+++ b/targphys.h
@@ -3,6 +3,8 @@
#ifndef TARGPHYS_H
#define TARGPHYS_H
+#include<stdint.h>
+
#ifdef TARGET_PHYS_ADDR_BITS
/* target_phys_addr_t is the type of a physical address (its size can
be different from 'target_ulong'). */