mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
7b1b5d1913
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
9 lines
204 B
C
9 lines
204 B
C
#include "qemu-common.h"
|
|
#include "arch_init.h"
|
|
#include "qapi/qmp/qerror.h"
|
|
|
|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
|
|
{
|
|
error_set(errp, QERR_NOT_SUPPORTED);
|
|
return NULL;
|
|
}
|