]> git.proxmox.com Git - mirror_qemu.git/blame - qobject/qnull.c
Merge remote-tracking branch 'remotes/sstabellini/tags/xen-20170721-tag' into staging
[mirror_qemu.git] / qobject / qnull.c
CommitLineData
481b002c
MA
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
f2ad72b3 13#include "qemu/osdep.h"
481b002c
MA
14#include "qemu-common.h"
15#include "qapi/qmp/qobject.h"
16
481b002c 17QObject qnull_ = {
55e1819c 18 .type = QTYPE_QNULL,
481b002c
MA
19 .refcnt = 1,
20};