2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Fixed prototype error in yyparse that only HPUX noticed.

This commit is contained in:
James Brister 2000-05-09 16:49:50 +00:00
parent 335b5eb5d0
commit c0fcd6b98b
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
161. [cleanup] error in yyparse prototype that only HPUX caught.
160. [cleanup] getnet*() are not going to be implemented at this
stage.

View File

@ -16,7 +16,7 @@
* SOFTWARE.
*/
/* $Id: confparser.y,v 1.75 2000/05/08 20:31:13 brister Exp $ */
/* $Id: confparser.y,v 1.76 2000/05/09 16:49:50 brister Exp $ */
#include <config.h>
@ -117,8 +117,8 @@ static isc_result_t tmpres;
static isc_boolean_t disabled; /* if "disabled" keyword was in zone */
static int debug_lexer;
int yyparse(void);
static int yylex(void);
static int yyparse(void);
static void parser_error(isc_boolean_t lasttoken,
const char *fmt, ...);
static void parser_warning(isc_boolean_t lasttoken,