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

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