diff options
-rw-r--r-- | cmd.c | 2 | ||||
-rw-r--r-- | cmd.h | 2 | ||||
-rw-r--r-- | main.c | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -222,7 +222,7 @@ void cmd_add_command( cmdstruct *cmd ) { } /* Init the command listing, called from main */ -void _cmd_init() { +void initialize_cmd(void) { int i; /* Now add the default command list */ @@ -17,5 +17,7 @@ void show_stat __P ((void)); void cmd_add_command( cmdstruct *cmd ); +void initialize_cmd(void); + #endif /* _CMD_H_ */ @@ -263,7 +263,7 @@ int main __P2 (int,argc, char **,argv) init_random((int)now.tv_sec); #endif - _cmd_init(); + initialize_cmd(); if ((p = getenv("POWWOWDIR"))) { strcpy(powwow_dir, p); |