This patch fixes a warning ('missing declaration for getdate_yyparse') in the compilation of lib/getdate.c. diff -r -u cvs-1.10.8-cvsnt/lib/getdate.c cvs-1.10.8-New/lib/getdate.c --- cvs-1.10.8-cvsnt/lib/getdate.c Mon Jan 03 22:23:00 2000 +++ cvs-1.10.8-New/lib/getdate.c Mon Mar 19 12:21:56 2001 @@ -128,6 +128,7 @@ #define yylex getdate_yylex #define yyerror getdate_yyerror +static int yyparse (); static int yylex (); static int yyerror (); diff -r -u cvs-1.10.8-cvsnt/lib/getdate.y cvs-1.10.8-New/lib/getdate.y --- cvs-1.10.8-cvsnt/lib/getdate.y Mon Jan 03 22:23:00 2000 +++ cvs-1.10.8-New/lib/getdate.y Mon Apr 02 09:07:39 2001 @@ -115,6 +115,7 @@ #define yylex getdate_yylex #define yyerror getdate_yyerror +static int yyparse (); static int yylex (); static int yyerror ();