Include the size of hostname, nickname, realname, userhost and username

in their forward declarations.


git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@313 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Tim Cava
2013-08-12 10:36:14 +00:00
parent 338a8ecd4c
commit 44e59337ee

View File

@@ -254,14 +254,14 @@ extern char space_minus[];
extern char dot[]; extern char dot[];
extern char star[]; extern char star[];
extern char comma[]; extern char comma[];
extern char nickname[]; extern char nickname[NICKNAME_LEN + 1];
extern char *ircrc_file; extern char *ircrc_file;
extern char *bircrc_file; extern char *bircrc_file;
extern char *LocalHostName; extern char *LocalHostName;
extern char hostname[]; extern char hostname[NAME_LEN + 1];
extern char userhost[]; extern char userhost[(NAME_LEN + 1) * 2];
extern char realname[]; extern char realname[REALNAME_LEN + 1];
extern char username[]; extern char username[NAME_LEN + 1];
extern char *send_umode; extern char *send_umode;
extern char *last_notify_nick; extern char *last_notify_nick;
extern int away_set; extern int away_set;