blob: e5112eb3f60470e2c5f1581715ab229cb2b1ca45 [file] [log] [blame]
Peter Maydell87c9b5e2016-01-29 17:49:52 +00001#include "qemu/osdep.h"
Philippe Mathieu-Daudéf68c0142020-09-13 21:53:45 +02002#include "qapi/qapi-commands-machine.h"
Fam Zhengcea25272016-09-21 12:27:14 +08003#include "qemu/uuid.h"
Paolo Bonzini5accc842013-08-02 17:02:01 +02004
5UuidInfo *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