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)

View File

@@ -69,11 +69,17 @@ typedef struct service_s
struct service_s *next;
} service_t;
extern int add_service(char *name, enum connection_type type, unsigned short port, int max_connections, new_connection_handler_t new_connection_handler, input_handler_t input_handler, connection_closed_handler_t connection_closed_handler, void *priv);
extern int server_init(void);
extern int server_quit(void);
extern int server_loop(command_context_t *command_context);
extern int server_register_commands(command_context_t *context);
int add_service(char *name, enum connection_type type, unsigned short port,
int max_connections, new_connection_handler_t new_connection_handler,
input_handler_t in_handler, connection_closed_handler_t close_handler,
void *priv);
int server_init(void);
int server_quit(void);
int server_loop(command_context_t *command_context);
int server_register_commands(command_context_t *context);
int server_port_command(struct command_context_s *cmd_ctx,
char *cmd, char **args, int argc, unsigned short *port);

View File

@@ -22,7 +22,7 @@
#include "server.h"
extern int tcl_init(void);
extern int tcl_register_commands(command_context_t *cmd_ctx);
int tcl_init(void);
int tcl_register_commands(command_context_t *cmd_ctx);
#endif /* _TCL_SERVER_H_ */

View File

@@ -68,7 +68,7 @@ typedef struct telnet_service_s
char *banner;
} telnet_service_t;
extern int telnet_init(char *banner);
extern int telnet_register_commands(command_context_t *command_context);
int telnet_init(char *banner);
int telnet_register_commands(command_context_t *command_context);
#endif /* TELNET_SERVER_H */