src/{server,pld,svf,xsvf}: remove 'extern' keyword

Removes 'extern' keyword from function declarations in header filess.
This commit is contained in:
Zachary T Welch
2009-11-09 03:38:34 -08:00
parent 81fbc63718
commit 994a63c3fe
7 changed files with 26 additions and 18 deletions

View File

@@ -54,8 +54,8 @@ typedef struct gdb_service_s
struct target_s *target;
} gdb_service_t;
extern int gdb_init(void);
extern int gdb_register_commands(command_context_t *command_context);
int gdb_init(void);
int gdb_register_commands(command_context_t *command_context);
#define ERROR_GDB_BUFFER_TOO_SMALL (-800)
#define ERROR_GDB_TIMEOUT (-801)