f37c6c2e89
MonitorDef is defined by hmp-target.h, and all users except one already include it; the reason why the stubs do not include it, is because hmp-target.h currently can only be used in files that are compiled per target. However, that is easily fixed. Because the benefit of having MonitorDef in typedefs.h is very small, do it and remove the type from typedefs.h. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
8 lines
122 B
C
8 lines
122 B
C
#include "qemu/osdep.h"
|
|
#include "monitor/hmp-target.h"
|
|
|
|
const MonitorDef *target_monitor_defs(void)
|
|
{
|
|
return NULL;
|
|
}
|