From 8ead6018837f13f1ef4a40c3eb5054512c160577 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 20 Feb 2014 20:08:31 +0100 Subject: stubs: Optimize dependencies for gdbstub.c It does not need qemu-common.h. Including exec/gdbstub.h fixes a warning from static code analyzers and avoids mismatching declarations for xml_builtin. Signed-off-by: Stefan Weil Signed-off-by: Michael Tokarev --- stubs/gdbstub.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'stubs') diff --git a/stubs/gdbstub.c b/stubs/gdbstub.c index c1dbfe7fb7..f6a4553a31 100644 --- a/stubs/gdbstub.c +++ b/stubs/gdbstub.c @@ -1,4 +1,6 @@ -#include "qemu-common.h" +#include "stdbool.h" /* bool (in exec/gdbstub.h) */ +#include "stddef.h" /* NULL */ +#include "exec/gdbstub.h" /* xml_builtin */ const char *const xml_builtin[][2] = { { NULL, NULL } -- cgit v1.2.1