]>
Commit | Line | Data |
---|---|---|
87c9b5e0 | 1 | #include "qemu/osdep.h" |
3bc2f570 | 2 | #include "qemu-common.h" |
9c17d615 | 3 | #include "sysemu/arch_init.h" |
7b1b5d19 | 4 | #include "qapi/qmp/qerror.h" |
3bc2f570 PB |
5 | |
6 | CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp) | |
7 | { | |
c6bd8c70 | 8 | error_setg(errp, QERR_UNSUPPORTED); |
3bc2f570 PB |
9 | return NULL; |
10 | } |