diff options
| author | Markus Armbruster | 2013-06-07 15:00:32 +0200 |
|---|---|---|
| committer | Anthony Liguori | 2013-06-14 15:58:57 +0200 |
| commit | f3eededb2fbc73c73daf08f791f0407b8541f4f4 (patch) | |
| tree | 6a3eb498ac96ecec82a252dcf48e19749b2e7d26 /include/qemu/log.h | |
| parent | error-report.h: Supply missing include (diff) | |
| download | qemu-f3eededb2fbc73c73daf08f791f0407b8541f4f4.tar.gz qemu-f3eededb2fbc73c73daf08f791f0407b8541f4f4.tar.xz qemu-f3eededb2fbc73c73daf08f791f0407b8541f4f4.zip | |
log.h: Supply missing includes
<stdio.h> has always been missing. Rest missed in commit eeacee4.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Laszlo "ever the optimist" Ersek <lersek@redhat.com>
Message-id: 1370610036-10577-3-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/qemu/log.h')
| -rw-r--r-- | include/qemu/log.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/qemu/log.h b/include/qemu/log.h index 6b0db02efc..fd76f913eb 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -2,6 +2,9 @@ #define QEMU_LOG_H #include <stdarg.h> +#include <stdbool.h> +#include <stdio.h> +#include "qemu/compiler.h" #ifdef NEED_CPU_H #include "disas/disas.h" #endif |
