xref: /qemu/accel/stubs/xen-stub.c (revision 3285cf4fe78b4b83b70b9306cc97968b414a6e9d)
1 /*
2  * Copyright (C) 2010       Citrix Ltd.
3  *
4  * This work is licensed under the terms of the GNU GPL, version 2.  See
5  * the COPYING file in the top-level directory.
6  *
7  */
8 
9 #include "qemu-common.h"
10 #include "hw/xen.h"
11 
12 int xen_init(void)
13 {
14     return -ENOSYS;
15 }
16