diff options
| author | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-17 18:31:07 +0200 |
|---|---|---|
| committer | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-17 18:31:07 +0200 |
| commit | f9bacbe9051c51f2c46c24baf31f674eb7ed0433 (patch) | |
| tree | e0e1797351bc3003ae4d376387f90bb92e772708 | |
| parent | 759063908d19e592f0d3bb3759964cec35114c8c (diff) | |
| download | cic-f9bacbe9051c51f2c46c24baf31f674eb7ed0433.tar.gz | |
reordered static declarations
| -rw-r--r-- | sic.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |
