xref: /qemu/include/hw/hw.h (revision d4842052100a3b44167e34ebdce0e7b3bf7512cf)
1 /* Declarations for use by hardware emulation.  */
2 #ifndef QEMU_HW_H
3 #define QEMU_HW_H
4 
5 #ifdef CONFIG_USER_ONLY
6 #error Cannot include hw/hw.h from user emulation
7 #endif
8 
9 #include "qom/object.h"
10 
11 void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
12 
13 #endif
14