diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2012-10-23 21:29:38 -0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-11-15 02:34:42 +0100 |
commit | c8aba9ced945a59fe2638d34660a940a3e727038 (patch) | |
tree | 2c865b46d5edaf62a9fc3ce249b9efd3441f6dd3 /qemu-config.h | |
parent | bcbb78c6b6db9e784448a8b521c14af083585ce4 (diff) |
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; |