From 3f2546b2ef55b661fd8dd69682b38992225e86f6 Mon Sep 17 00:00:00 2001 From: fishsoupisgood Date: Mon, 29 Apr 2019 01:17:54 +0100 Subject: Initial import of qemu-2.4.1 --- stubs/uuid.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 stubs/uuid.c (limited to 'stubs/uuid.c') diff --git a/stubs/uuid.c b/stubs/uuid.c new file mode 100644 index 00000000..ffc0ed40 --- /dev/null +++ b/stubs/uuid.c @@ -0,0 +1,12 @@ +#include "qemu-common.h" +#include "sysemu/sysemu.h" +#include "qmp-commands.h" + +UuidInfo *qmp_query_uuid(Error **errp) +{ + UuidInfo *info = g_malloc0(sizeof(*info)); + + info->UUID = g_strdup(UUID_NONE); + return info; +} + -- cgit v1.2.3