From 3885ab5a5af7ece410ce3eeb1059da3ea950436a Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Mon, 9 Nov 2009 04:22:23 -0800 Subject: src/target: remove 'extern' and wrap headers Remove extern keywords from function prototypes and wrap long lines. --- src/target/arm_simulator.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/target/arm_simulator.h') diff --git a/src/target/arm_simulator.h b/src/target/arm_simulator.h index bad904ba..9e7b0400 100644 --- a/src/target/arm_simulator.h +++ b/src/target/arm_simulator.h @@ -37,12 +37,11 @@ struct arm_sim_interface enum armv4_5_mode (*get_mode)(struct arm_sim_interface *sim); }; - /* armv4_5 version */ -extern int arm_simulate_step(struct target_s *target, uint32_t *dry_run_pc); +int arm_simulate_step(struct target_s *target, uint32_t *dry_run_pc); /* a generic arm simulator. Caller must implement the sim interface */ -extern int arm_simulate_step_core(target_t *target, uint32_t *dry_run_pc, struct arm_sim_interface *sim); - +int arm_simulate_step_core(target_t *target, + uint32_t *dry_run_pc, struct arm_sim_interface *sim); #endif /* ARM_SIMULATOR_H */ -- cgit v1.2.3