xref: /qemu/stubs/uuid.c (revision 1f9c4cfda4df7c442255f9492a2408d80df1d42a)
1 #include "qemu-common.h"
2 #include "sysemu/sysemu.h"
3 #include "qmp-commands.h"
4 
5 UuidInfo *qmp_query_uuid(Error **errp)
6 {
7     UuidInfo *info = g_malloc0(sizeof(*info));
8 
9     info->UUID = g_strdup(UUID_NONE);
10     return info;
11 }
12 
13