target_t -> struct target
[fw/openocd] / src / target / arm_simulator.h
index 9e7b0400c76aefb8c807a4aa2138103f88a498b0..616627a42140f5c541fc407f912295b261adb9e9 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "types.h"
 
-struct target_s;
+struct target;
 
 struct arm_sim_interface
 {
@@ -38,10 +38,10 @@ struct arm_sim_interface
 };
 
 /* armv4_5 version */
-int arm_simulate_step(struct target_s *target, uint32_t *dry_run_pc);
+int arm_simulate_step(struct target *target, uint32_t *dry_run_pc);
 
 /* a generic arm simulator. Caller must implement the sim interface */
-int arm_simulate_step_core(target_t *target,
+int arm_simulate_step_core(struct target *target,
                uint32_t *dry_run_pc, struct arm_sim_interface *sim);
 
 #endif /* ARM_SIMULATOR_H */