X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/blobdiff_plain/f764718ed65609003b1faea0885bf4f6ec7c34da..HEAD:/src/tclx/src/tclxgdat.y diff --git a/src/tclx/src/tclxgdat.y b/src/tclx/src/tclxgdat.y index e29d7ea..aea9f3d 100644 --- a/src/tclx/src/tclxgdat.y +++ b/src/tclx/src/tclxgdat.y @@ -58,6 +58,9 @@ #define DAYLIGHT 1 #define STANDARD 2 #define MAYBE 3 + +int yylex(void); +void yyerror(const char *); %} %% @@ -229,6 +232,7 @@ time_t daylcorr(future, now) time_t future, now; static char *lptr; //static +int yylex() { #ifndef YYSTYPE @@ -582,6 +586,6 @@ Tcl_GetDate (p, now, zone) void yyerror(msg) - char *msg; + const char *msg; { }