Move stdbool.h
authorPaul Brook <paul@codesourcery.com>
Sun, 13 Jun 2010 18:00:50 +0000 (19:00 +0100)
committerPaul Brook <paul@codesourcery.com>
Sun, 13 Jun 2010 18:00:50 +0000 (19:00 +0100)
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>
14 files changed:
block/blkdebug.c
check-qjson.c
dyngen-exec.h
hw/9p.h
hw/eepro100.c
hw/hw.h
hw/virtio-serial.h
hw/xenfb.c
json-parser.c
kvm.h
nbd.h
net.h
qemu-common.h
vnc-encoding-tight.c

index 8325f75f80dabc9f4a4871c535e702faa21a368e..98fed944b1364f82921c4a02a4fa2244d7d27b53 100644 (file)
@@ -26,8 +26,6 @@
 #include "block_int.h"
 #include "module.h"
 
-#include <stdbool.h>
-
 typedef struct BlkdebugVars {
     int state;
 
index 109e77753ede17aee8566605da21603e14955927..86e780ccde850d2552a996bfd63568a2f3e1cc5f 100644 (file)
@@ -9,7 +9,6 @@
  *
  */
 #include <check.h>
-#include <stdbool.h>
 
 #include "qstring.h"
 #include "qint.h"
index 0700a2d9bb20717dba5b8093e993c61dc10cb767..5bfef3f6fe1b7ea494e89a3c4ebfe544de26babe 100644 (file)
@@ -31,6 +31,7 @@
    host headers do not allow that. */
 #include <stddef.h>
 #include <stdint.h>
+#include <stdbool.h>
 
 #ifdef __OpenBSD__
 #include <sys/types.h>
diff --git a/hw/9p.h b/hw/9p.h
index 5fdd770ffc416243953f32579d0d0f204c3ad413..d9951d6bcc1847fd641edf615ab8867e495deb73 100644 (file)
--- 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 */
index a74d8348111290f8d3fc1df2df791523425cfd98..97afa2cd9f1ef4ee9f996c1522c9e17f4a221dc0 100644 (file)
@@ -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 36be0beed34c4d3b0a8c8ae5f6af6370f11459c1..a49d866532e2a54f49807c0ad78cc44bd652902a 100644 (file)
--- 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"
 
index a93b5458b29557f9ae53a32fdc894094e24f406c..ff08c406819bfa62ea63ed81cd1d32e9fe18fec4 100644 (file)
@@ -15,7 +15,6 @@
 #ifndef _QEMU_VIRTIO_SERIAL_H
 #define _QEMU_VIRTIO_SERIAL_H
 
-#include <stdbool.h>
 #include "qdev.h"
 #include "virtio.h"
 
index 422cd534008acd1b3bc8549928a05490e4acdcf1..da5297b4989952d188ee0c6f8359bdb9a5619a9d 100644 (file)
@@ -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>
index b55d76373e8747a456b9295a598607a4e73198be..1c88ed898e2f9c699032e1cbf64579c7086ab0a3 100644 (file)
@@ -11,7 +11,6 @@
  *
  */
 
-#include <stdbool.h>
 #include <stdarg.h>
 
 #include "qemu-common.h"
diff --git a/kvm.h b/kvm.h
index a28e7aab53df55aba7cc03ed1a50ba48674e70dd..a30529c9c48c04f26bc7620703db4db8013664ed 100644 (file)
--- a/kvm.h
+++ b/kvm.h
@@ -14,7 +14,6 @@
 #ifndef QEMU_KVM_H
 #define QEMU_KVM_H
 
-#include <stdbool.h>
 #include <errno.h>
 #include "config-host.h"
 #include "qemu-queue.h"
diff --git a/nbd.h b/nbd.h
index 5deac2915268b03bc6548c0cba955e62c9e1e69e..5a1fbdf5128bfefe7755c78ad4f178035a46ec6b 100644 (file)
--- a/nbd.h
+++ b/nbd.h
@@ -20,7 +20,6 @@
 #define NBD_H
 
 #include <sys/types.h>
-#include <stdbool.h>
 
 #include <qemu-common.h>
 #include "block_int.h"
diff --git a/net.h b/net.h
index b83f6153466312416daf8cdb30c76f7f1cee6cae..518cf9c1f73a080790d212bc7265b2efa53a658c 100644 (file)
--- a/net.h
+++ b/net.h
@@ -1,7 +1,6 @@
 #ifndef QEMU_NET_H
 #define QEMU_NET_H
 
-#include <stdbool.h>
 #include "qemu-queue.h"
 #include "qemu-common.h"
 #include "qdict.h"
index a4888e5e5cdbd27c665e29671926c2f809975397..d133f35f4c47edfeb706f80f07d507421ddca599 100644 (file)
@@ -26,6 +26,7 @@ typedef struct QEMUBH QEMUBH;
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
+#include <stdbool.h>
 #include <string.h>
 #include <strings.h>
 #include <inttypes.h>
index e8604a85a9285f84eeee82223f1e30723ebe24be..faba4834cd36b4fbe678938d19f654f1516c3e1b 100644 (file)
@@ -26,8 +26,6 @@
  * THE SOFTWARE.
  */
 
-#include <stdbool.h>
-
 #include "qdict.h"
 #include "qint.h"
 #include "vnc.h"