]> git.armaanb.net Git - sic.git/commitdiff
reordered static declarations
authorAnselm R. Garbe <garbeam@wmii.de>
Mon, 17 Jul 2006 16:31:07 +0000 (18:31 +0200)
committerAnselm R. Garbe <garbeam@wmii.de>
Mon, 17 Jul 2006 16:31:07 +0000 (18:31 +0200)
sic.c

diff --git a/sic.c b/sic.c
index 4ec3a7543d24cf63b094cc7585fc208a8ecc6a7c..b32f8f87bf3bc6e618d589824004ee9f50b1b8c9 100644 (file)
--- a/sic.c
+++ b/sic.c
 
 enum { TOK_NICKSRV = 0, TOK_USER, TOK_CMD, TOK_CHAN, TOK_ARG, TOK_TEXT, TOK_LAST };
 
-static int irc;
-static time_t last_response;
+static char *host = NULL;
 static char nick[32];                  /* might change while running */
 static char message[MAXMSG]; /* message buf used for communication */
-static char *host = NULL;
+static int irc;
+static time_t last_response;
 
 static int
 tcpopen(char *address)