https://github.com/qemu/qemu
Raw File
Tip revision: c1eb2ddf0f8075faddc5f7c3d39feae3e8e9d6b4 authored by Peter Maydell on 19 April 2023, 16:27:13 UTC
Update version for v8.0.0 release
Tip revision: c1eb2dd
qemu-fsdev-dummy.c
/*
 * 9p
 *
 * Copyright IBM, Corp. 2010
 *
 * Authors:
 *  Gautham R Shenoy <ego@in.ibm.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

#include "qemu/osdep.h"
#include "qemu-fsdev.h"
#include "qemu/config-file.h"

int qemu_fsdev_add(QemuOpts *opts, Error **errp)
{
    return 0;
}
back to top