Files
qemu-qemu-1/stubs/qmp-command-available.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
141 B
C
Raw Normal View History

#include "qemu/osdep.h"
#include "qapi/qmp-registry.h"
bool qmp_command_available(const QmpCommand *cmd, Error **errp)
{
return true;
}