summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2010-06-13 19:00:50 +0100
committerPaul Brook <paul@codesourcery.com>2010-06-13 19:00:50 +0100
commit11165820d194478d493d667a11ea8480ce893c70 (patch)
tree71aaf81b6864f6b30de9ea5d1a6b97ecd5348ce2 /hw
parentea4e78e590e5dbef9c41d987d2553d752ecb49b1 (diff)
downloadqemu-11165820d194478d493d667a11ea8480ce893c70.tar.gz
Move stdbool.h
Move inclusion of stdbool.h to common header files, instead of including in an ad-hoc manner. Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/9p.h2
-rw-r--r--hw/eepro100.c1
-rw-r--r--hw/hw.h1
-rw-r--r--hw/virtio-serial.h1
-rw-r--r--hw/xenfb.c1
5 files changed, 0 insertions, 6 deletions
diff --git a/hw/9p.h b/hw/9p.h
index 5fdd770ffc..d9951d6bcc 100644
--- a/hw/9p.h
+++ b/hw/9p.h
@@ -14,8 +14,6 @@
#ifndef QEMU_9P_H
#define QEMU_9P_H
-#include <stdbool.h>
-
typedef struct V9fsConf
{
/* tag name for the device */
diff --git a/hw/eepro100.c b/hw/eepro100.c
index a74d834811..97afa2cd9f 100644
--- a/hw/eepro100.c
+++ b/hw/eepro100.c
@@ -41,7 +41,6 @@
* * Wake-on-LAN is not implemented.
*/
-#include <stdbool.h> /* bool */
#include <stddef.h> /* offsetof */
#include "hw.h"
#include "pci.h"
diff --git a/hw/hw.h b/hw/hw.h
index 36be0beed3..a49d866532 100644
--- a/hw/hw.h
+++ b/hw/hw.h
@@ -8,7 +8,6 @@
#include "cpu-common.h"
#endif
-#include <stdbool.h>
#include "ioport.h"
#include "irq.h"
diff --git a/hw/virtio-serial.h b/hw/virtio-serial.h
index a93b5458b2..ff08c40681 100644
--- a/hw/virtio-serial.h
+++ b/hw/virtio-serial.h
@@ -15,7 +15,6 @@
#ifndef _QEMU_VIRTIO_SERIAL_H
#define _QEMU_VIRTIO_SERIAL_H
-#include <stdbool.h>
#include "qdev.h"
#include "virtio.h"
diff --git a/hw/xenfb.c b/hw/xenfb.c
index 422cd53400..da5297b498 100644
--- a/hw/xenfb.c
+++ b/hw/xenfb.c
@@ -29,7 +29,6 @@
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
-#include <stdbool.h>
#include <sys/mman.h>
#include <errno.h>
#include <stdio.h>