qemu-config.h: Include headers it needs
authorEduardo Habkost <ehabkost@redhat.com>
Tue, 23 Oct 2012 23:29:38 +0000 (21:29 -0200)
committerAndreas Färber <afaerber@suse.de>
Thu, 15 Nov 2012 01:34:42 +0000 (02:34 +0100)
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>
qemu-config.h

index 5557562c3377a28f3526f5b2122b356ad5465255..812c4c5b10f0d6c9833b7c36f5c840c40e7efba7 100644 (file)
@@ -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;