ircd_parser: Fix inconsistent declaration of yyerror().

This commit is contained in:
Jilles Tjoelker 2014-05-29 23:23:50 +02:00
parent 0f8db0552e
commit 67b7840a5d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
#define YY_NO_UNPUT
int yyparse(void);
int yyerror(const char *);
void yyerror(const char *);
int yylex(void);
static time_t conf_find_time(char*);