mirror of
https://git.proxmox.com/git/qemu
synced 2025-06-14 08:41:56 +00:00
10 lines
211 B
C
10 lines
211 B
C
#include "qemu-common.h"
|
|
#include "sysemu/arch_init.h"
|
|
#include "qapi/qmp/qerror.h"
|
|
|
|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
|
|
{
|
|
error_set(errp, QERR_NOT_SUPPORTED);
|
|
return NULL;
|
|
}
|