diff options
Diffstat (limited to 'target-lm32')
-rw-r--r-- | target-lm32/cpu.c | 1 | ||||
-rw-r--r-- | target-lm32/gdbstub.c | 2 | ||||
-rw-r--r-- | target-lm32/helper.c | 1 | ||||
-rw-r--r-- | target-lm32/lm32-semi.c | 5 | ||||
-rw-r--r-- | target-lm32/machine.c | 1 | ||||
-rw-r--r-- | target-lm32/op_helper.c | 2 | ||||
-rw-r--r-- | target-lm32/translate.c | 1 |
7 files changed, 7 insertions, 6 deletions
diff --git a/target-lm32/cpu.c b/target-lm32/cpu.c index 0bc544c1e0..f93bb5d0dd 100644 --- a/target-lm32/cpu.c +++ b/target-lm32/cpu.c @@ -18,6 +18,7 @@ * <http://www.gnu.org/licenses/lgpl-2.1.html> */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" diff --git a/target-lm32/gdbstub.c b/target-lm32/gdbstub.c index 4979a98d74..8ac1288bb6 100644 --- a/target-lm32/gdbstub.c +++ b/target-lm32/gdbstub.c @@ -17,7 +17,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ -#include "config.h" +#include "qemu/osdep.h" #include "qemu-common.h" #include "exec/gdbstub.h" #include "hw/lm32/lm32_pic.h" diff --git a/target-lm32/helper.c b/target-lm32/helper.c index e26c13357b..3ebec68cba 100644 --- a/target-lm32/helper.c +++ b/target-lm32/helper.c @@ -17,6 +17,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu/host-utils.h" #include "sysemu/sysemu.h" diff --git a/target-lm32/lm32-semi.c b/target-lm32/lm32-semi.c index ec6524f376..20f1a1cd48 100644 --- a/target-lm32/lm32-semi.c +++ b/target-lm32/lm32-semi.c @@ -10,10 +10,7 @@ * See the COPYING file in the top-level directory. */ -#include <errno.h> -#include <unistd.h> -#include <string.h> -#include <stddef.h> +#include "qemu/osdep.h" #include "cpu.h" #include "exec/helper-proto.h" #include "qemu/log.h" diff --git a/target-lm32/machine.c b/target-lm32/machine.c index 8327c6d97c..91c943d193 100644 --- a/target-lm32/machine.c +++ b/target-lm32/machine.c @@ -1,3 +1,4 @@ +#include "qemu/osdep.h" #include "hw/hw.h" #include "hw/boards.h" diff --git a/target-lm32/op_helper.c b/target-lm32/op_helper.c index 61209c19b2..b6759e0225 100644 --- a/target-lm32/op_helper.c +++ b/target-lm32/op_helper.c @@ -1,4 +1,4 @@ -#include <assert.h> +#include "qemu/osdep.h" #include "cpu.h" #include "exec/helper-proto.h" #include "qemu/host-utils.h" diff --git a/target-lm32/translate.c b/target-lm32/translate.c index fa5b0b93a3..477d4285a5 100644 --- a/target-lm32/translate.c +++ b/target-lm32/translate.c @@ -17,6 +17,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "cpu.h" #include "disas/disas.h" #include "exec/helper-proto.h" |