diff options
author | Paul Brook <paul@codesourcery.com> | 2010-06-13 19:00:50 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2010-06-13 19:00:50 +0100 |
commit | 11165820d194478d493d667a11ea8480ce893c70 (patch) | |
tree | 71aaf81b6864f6b30de9ea5d1a6b97ecd5348ce2 /qemu-common.h | |
parent | ea4e78e590e5dbef9c41d987d2553d752ecb49b1 (diff) | |
download | qemu-11165820d194478d493d667a11ea8480ce893c70.tar.gz qemu-11165820d194478d493d667a11ea8480ce893c70.tar.bz2 qemu-11165820d194478d493d667a11ea8480ce893c70.zip |
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 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h index a4888e5e5c..d133f35f4c 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -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> |