Get rid of some K&R style function declarations for conf parser.

This commit is contained in:
Jilles Tjoelker 2008-06-11 00:54:02 +02:00
parent 4a4ea261b2
commit b9f46fc5fa
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -50,7 +50,7 @@
struct config_server_hide ConfigServerHide;
extern int yyparse(); /* defined in y.tab.c */
extern int yyparse(void); /* defined in y.tab.c */
extern char linebuf[];
#ifndef INADDR_NONE