Add qemu 2.4.0
[kvmfornfv.git] / qemu / stubs / uuid.c
diff --git a/qemu/stubs/uuid.c b/qemu/stubs/uuid.c
new file mode 100644 (file)
index 0000000..ffc0ed4
--- /dev/null
@@ -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;
+}
+