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