]> Git Repo - qemu.git/blob - stubs/uuid.c
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[qemu.git] / stubs / uuid.c
1 #include "qemu/osdep.h"
2 #include "qemu-common.h"
3 #include "qemu/uuid.h"
4 #include "qmp-commands.h"
5
6 UuidInfo *qmp_query_uuid(Error **errp)
7 {
8     UuidInfo *info = g_malloc0(sizeof(*info));
9
10     info->UUID = g_strdup(UUID_NONE);
11     return info;
12 }
13
This page took 0.025848 seconds and 4 git commands to generate.