]> git.proxmox.com Git - mirror_qemu.git/blob - qobject/qnull.c
Merge remote-tracking branch 'remotes/kraxel/tags/pull-fw-cfg-20151217-1' into staging
[mirror_qemu.git] / qobject / qnull.c
1 /*
2 * QNull
3 *
4 * Copyright (C) 2015 Red Hat, Inc.
5 *
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU LGPL, version 2.1
10 * or later. See the COPYING.LIB file in the top-level directory.
11 */
12
13 #include "qemu-common.h"
14 #include "qapi/qmp/qobject.h"
15
16 QObject qnull_ = {
17 .type = QTYPE_QNULL,
18 .refcnt = 1,
19 };