aboutsummaryrefslogtreecommitdiffstats
path: root/commands.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-01-04 13:09:07 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2006-01-04 13:09:07 +0100
commit7e563ed9a130cce070753f011158ef0714c58d46 (patch)
treec0a30a50d6cd9f09ddc4e02b38cb72a966136540 /commands.h
parent0196c47511000b3ee2060af6e7fd600b23876010 (diff)
Moved root_command functions to commands.c
Diffstat (limited to 'commands.h')
-rw-r--r--commands.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/commands.h b/commands.h
index b878f211..806126e6 100644
--- a/commands.h
+++ b/commands.h
@@ -28,8 +28,6 @@
#include "bitlbee.h"
-/* Hmm... Linked list? Plleeeeaaase?? ;-) */
-
typedef struct command_t
{
char *command;
@@ -57,8 +55,6 @@ int cmd_qlist( irc_t *irc, char **cmd );
int cmd_import_buddies( irc_t *irc, char **cmd );
int cmd_dump( irc_t *irc, char **cmd );
-
-
-extern command_t commands[];
+extern const command_t commands[];
#endif