diff options
author | Eduardo Habkost | 2012-10-24 01:29:38 +0200 |
---|---|---|
committer | Andreas Färber | 2012-11-15 02:34:42 +0100 |
commit | c8aba9ced945a59fe2638d34660a940a3e727038 (patch) | |
tree | 2c865b46d5edaf62a9fc3ce249b9efd3441f6dd3 /qemu-config.h | |
parent | vnc-palette.h: Include <stdbool.h> (diff) | |
download | qemu-c8aba9ced945a59fe2638d34660a940a3e727038.tar.gz qemu-c8aba9ced945a59fe2638d34660a940a3e727038.tar.xz qemu-c8aba9ced945a59fe2638d34660a940a3e727038.zip |
qemu-config.h: Include headers it needs
Include:
- <stdio.h> for FILE
- qemu-option.h for QemuOptsList
Some of those headers were probably being included by accident because
some other headers were including qemu-common.h, but those headers
should eventually stop including qemu-common.h.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'qemu-config.h')
-rw-r--r-- | qemu-config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-config.h b/qemu-config.h index 5557562c33..812c4c5b10 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -1,6 +1,8 @@ #ifndef QEMU_CONFIG_H #define QEMU_CONFIG_H +#include <stdio.h> +#include "qemu-option.h" #include "error.h" extern QemuOptsList qemu_fsdev_opts; |