diff mbox

[2/7] log.h: Supply missing includes

Message ID 1370536046-15125-3-git-send-email-armbru@redhat.com
State New
Headers show

Commit Message

Markus Armbruster June 6, 2013, 4:27 p.m. UTC
<stdio.h> has always been missing.  Rest missed in commit eeacee4.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 include/qemu/log.h | 3 +++
 1 file changed, 3 insertions(+)

Comments

Laszlo Ersek June 6, 2013, 6:22 p.m. UTC | #1
On 06/06/13 18:27, Markus Armbruster wrote:
> <stdio.h> has always been missing.  Rest missed in commit eeacee4.
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  include/qemu/log.h | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/include/qemu/log.h b/include/qemu/log.h
> index 6b0db02..fd76f91 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
> 

Reviewed-by: Laszlo Ersek <lersek@redhat.com>
diff mbox

Patch

diff --git a/include/qemu/log.h b/include/qemu/log.h
index 6b0db02..fd76f91 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