diff --git a/qemu/target-mips/cpu.c b/qemu/target-mips/cpu.c index ece97449..a7514e49 100644 --- a/qemu/target-mips/cpu.c +++ b/qemu/target-mips/cpu.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "hw/mips/mips.h" diff --git a/qemu/target-mips/dsp_helper.c b/qemu/target-mips/dsp_helper.c index 46528de3..df7d2204 100644 --- a/qemu/target-mips/dsp_helper.c +++ b/qemu/target-mips/dsp_helper.c @@ -17,6 +17,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "exec/helper-proto.h" #include "qemu/bitops.h" diff --git a/qemu/target-mips/helper.c b/qemu/target-mips/helper.c index 81415667..511b5be6 100644 --- a/qemu/target-mips/helper.c +++ b/qemu/target-mips/helper.c @@ -16,12 +16,9 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ -#include -#include -#include -#include + +#include "qemu/osdep.h" #include "unicorn/platform.h" -#include #include "cpu.h" #include "exec/cpu_ldst.h" diff --git a/qemu/target-mips/lmi_helper.c b/qemu/target-mips/lmi_helper.c index bbfcd59c..fb1245b3 100644 --- a/qemu/target-mips/lmi_helper.c +++ b/qemu/target-mips/lmi_helper.c @@ -17,6 +17,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "exec/helper-proto.h" diff --git a/qemu/target-mips/msa_helper.c b/qemu/target-mips/msa_helper.c index a9708c6e..2d34877e 100644 --- a/qemu/target-mips/msa_helper.c +++ b/qemu/target-mips/msa_helper.c @@ -17,6 +17,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "exec/helper-proto.h" diff --git a/qemu/target-mips/op_helper.c b/qemu/target-mips/op_helper.c index f2259a4e..7809dcbb 100644 --- a/qemu/target-mips/op_helper.c +++ b/qemu/target-mips/op_helper.c @@ -16,7 +16,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ -#include +#include "qemu/osdep.h" #include "cpu.h" #include "qemu/host-utils.h" #include "exec/helper-proto.h" diff --git a/qemu/target-mips/translate.c b/qemu/target-mips/translate.c index d8253e94..52b15241 100644 --- a/qemu/target-mips/translate.c +++ b/qemu/target-mips/translate.c @@ -21,6 +21,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "tcg-op.h" #include "exec/cpu_ldst.h"