blob: 203ebb0f2731bfb3ffdcec1cecc71838bce2d389 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "qemu/osdep.h"
#include "stddef.h"
#include "qemu/typedefs.h"
const MonitorDef *target_monitor_defs(void);
const MonitorDef *target_monitor_defs(void)
{
return NULL;
}
|