aboutsummaryrefslogtreecommitdiff
path: root/include/hw/hw.h
blob: 8079b911fa784bf3e19bcfee68467e7af5b43f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Declarations for use by hardware emulation.  */
#ifndef QEMU_HW_H
#define QEMU_HW_H

#ifdef CONFIG_USER_ONLY
#error Cannot include hw/hw.h from user emulation
#endif

void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);

#endif