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

@@ -35,17 +35,19 @@ typedef struct mips_m4k_common_s
mips32_common_t mips32_common;
} mips_m4k_common_t;
extern int mips_m4k_bulk_write_memory(struct target_s *target, uint32_t address, uint32_t count, uint8_t *buffer);
int mips_m4k_bulk_write_memory(struct target_s *target,
uint32_t address, uint32_t count, uint8_t *buffer);
extern void mips_m4k_enable_breakpoints(struct target_s *target);
extern int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
extern int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
extern int mips_m4k_add_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
extern int mips_m4k_remove_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
extern int mips_m4k_set_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
extern int mips_m4k_unset_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
extern int mips_m4k_add_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
extern int mips_m4k_remove_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
extern void mips_m4k_enable_watchpoints(struct target_s *target);
void mips_m4k_enable_breakpoints(struct target_s *target);
int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_add_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_remove_breakpoint(struct target_s *target, breakpoint_t *bp);
void mips_m4k_enable_watchpoints(struct target_s *target);
int mips_m4k_set_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_unset_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_add_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_remove_watchpoint(struct target_s *target, watchpoint_t *wp);
#endif /*MIPS_M4K_H*/