diff options
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/arm_disassembler.h | 2 | ||||
-rw-r--r-- | src/target/arm_simulator.h | 2 | ||||
-rw-r--r-- | src/target/armv4_5_cache.h | 2 | ||||
-rw-r--r-- | src/target/breakpoints.h | 2 | ||||
-rw-r--r-- | src/target/mips_m4k.h | 2 | ||||
-rw-r--r-- | src/target/register.c | 2 | ||||
-rw-r--r-- | src/target/target.h | 2 | ||||
-rw-r--r-- | src/target/target_type.h | 2 | ||||
-rw-r--r-- | src/target/trace.h | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/src/target/arm_disassembler.h b/src/target/arm_disassembler.h index 774dd2c2..156c037e 100644 --- a/src/target/arm_disassembler.h +++ b/src/target/arm_disassembler.h @@ -20,7 +20,7 @@ #ifndef ARM_DISASSEMBLER_H #define ARM_DISASSEMBLER_H -#include "types.h" +#include <helper/types.h> enum arm_instruction_type { diff --git a/src/target/arm_simulator.h b/src/target/arm_simulator.h index 616627a4..daca3711 100644 --- a/src/target/arm_simulator.h +++ b/src/target/arm_simulator.h @@ -20,7 +20,7 @@ #ifndef ARM_SIMULATOR_H #define ARM_SIMULATOR_H -#include "types.h" +#include <helper/types.h> struct target; diff --git a/src/target/armv4_5_cache.h b/src/target/armv4_5_cache.h index 1a82b671..c529b458 100644 --- a/src/target/armv4_5_cache.h +++ b/src/target/armv4_5_cache.h @@ -20,7 +20,7 @@ #ifndef ARMV4_5_CACHE_H #define ARMV4_5_CACHE_H -#include "types.h" +#include <helper/types.h> struct command_context; diff --git a/src/target/breakpoints.h b/src/target/breakpoints.h index a65f20e3..ee4d9d13 100644 --- a/src/target/breakpoints.h +++ b/src/target/breakpoints.h @@ -20,7 +20,7 @@ #ifndef BREAKPOINTS_H #define BREAKPOINTS_H -#include "types.h" +#include <helper/types.h> struct target; diff --git a/src/target/mips_m4k.h b/src/target/mips_m4k.h index a7c5bb39..c5f9be2b 100644 --- a/src/target/mips_m4k.h +++ b/src/target/mips_m4k.h @@ -23,7 +23,7 @@ #ifndef MIPS_M4K_H #define MIPS_M4K_H -#include "types.h" +#include <helper/types.h> struct target; diff --git a/src/target/register.c b/src/target/register.c index 7b26b740..355c8601 100644 --- a/src/target/register.c +++ b/src/target/register.c @@ -24,7 +24,7 @@ #include "config.h" #endif -#include "types.h" +#include <helper/types.h> #include "register.h" #include <helper/log.h> diff --git a/src/target/target.h b/src/target/target.h index 43ac65fc..73190695 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -26,7 +26,7 @@ #ifndef TARGET_H #define TARGET_H -#include "types.h" +#include <helper/types.h> #include <helper/jim.h> struct reg; diff --git a/src/target/target_type.h b/src/target/target_type.h index 15cf66be..67041b31 100644 --- a/src/target/target_type.h +++ b/src/target/target_type.h @@ -26,7 +26,7 @@ #ifndef TARGET_TYPE_H #define TARGET_TYPE_H -#include "types.h" +#include <helper/types.h> struct target; diff --git a/src/target/trace.h b/src/target/trace.h index c554c731..5fbedc4b 100644 --- a/src/target/trace.h +++ b/src/target/trace.h @@ -20,7 +20,7 @@ #ifndef TRACE_H #define TRACE_H -#include "types.h" +#include <helper/types.h> struct target; struct command_context; |