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

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