These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / stubs / arch-query-cpu-def.c
1 #include "qemu/osdep.h"
2 #include "qemu-common.h"
3 #include "sysemu/arch_init.h"
4 #include "qapi/qmp/qerror.h"
5
6 CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
7 {
8     error_setg(errp, QERR_UNSUPPORTED);
9     return NULL;
10 }