sic

simple irc client
git clone git://git.suckless.org/sic
Log | Files | Refs | README | LICENSE

commit f9bacbe9051c51f2c46c24baf31f674eb7ed0433
parent 759063908d19e592f0d3bb3759964cec35114c8c
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Mon, 17 Jul 2006 18:31:07 +0200

reordered static declarations

Diffstat:
Msic.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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)