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

@@ -42,8 +42,9 @@ typedef struct debug_msg_receiver_s
struct debug_msg_receiver_s *next;
} debug_msg_receiver_t;
extern int target_request(target_t *target, uint32_t request);
extern int delete_debug_msg_receiver(struct command_context_s *cmd_ctx, target_t *target);
extern int target_request_register_commands(struct command_context_s *cmd_ctx);
int target_request(target_t *target, uint32_t request);
int delete_debug_msg_receiver(struct command_context_s *cmd_ctx,
target_t *target);
int target_request_register_commands(struct command_context_s *cmd_ctx);
#endif /* TARGET_REQUEST_H */