From: Anselm R. Garbe Date: Mon, 17 Jul 2006 16:31:07 +0000 (+0200) Subject: reordered static declarations X-Git-Url: https://git.armaanb.net/?p=sic.git;a=commitdiff_plain;h=f9bacbe9051c51f2c46c24baf31f674eb7ed0433 reordered static declarations --- diff --git a/sic.c b/sic.c index 4ec3a75..b32f8f8 100644 --- a/sic.c +++ b/sic.c @@ -26,11 +26,11 @@ 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)