src/target: remove 'extern' and wrap headers

Remove extern keywords from function prototypes and wrap long lines.
This commit is contained in:
Zachary T Welch
2009-11-09 04:22:23 -08:00
parent 42cafc9369
commit 3885ab5a5a
26 changed files with 293 additions and 187 deletions

View File

@@ -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 */