qom: Update documentation comment of struct Object
[qemu/ar7.git] / stubs / uuid.c
blobffc0ed40aec1abe795bf85031151b25deb631102
1 #include "qemu-common.h"
2 #include "sysemu/sysemu.h"
3 #include "qmp-commands.h"
5 UuidInfo *qmp_query_uuid(Error **errp)
7 UuidInfo *info = g_malloc0(sizeof(*info));
9 info->UUID = g_strdup(UUID_NONE);
10 return info;