Get rid of some K&R style function declarations for conf parser.
This commit is contained in:
parent
4a4ea261b2
commit
b9f46fc5fa
|
@ -25,9 +25,9 @@
|
||||||
|
|
||||||
#define YY_NO_UNPUT
|
#define YY_NO_UNPUT
|
||||||
|
|
||||||
int yyparse();
|
int yyparse(void);
|
||||||
int yyerror(const char *);
|
int yyerror(const char *);
|
||||||
int yylex();
|
int yylex(void);
|
||||||
|
|
||||||
static time_t conf_find_time(char*);
|
static time_t conf_find_time(char*);
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
|
|
||||||
struct config_server_hide ConfigServerHide;
|
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[];
|
extern char linebuf[];
|
||||||
|
|
||||||
#ifndef INADDR_NONE
|
#ifndef INADDR_NONE
|
||||||
|
|
Loading…
Reference in New Issue