X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fparsedate.y;h=d6022d365d3d22965b2411e8a4939c2a1ee56e7c;hb=08932aebd49f355220da46a3e1ea58d569e46a95;hp=b710129c04f9434a3fc909924458502358e8ad6f;hpb=860ea57fbd4101b7532d84a0d641a3bbe538695f;p=citadel.git diff --git a/citadel/parsedate.y b/citadel/parsedate.y index b710129c0..d6022d365 100644 --- a/citadel/parsedate.y +++ b/citadel/parsedate.y @@ -7,7 +7,7 @@ ** and Jim Berets in August, 1990. ** Further revised (removed obsolete constructs and cleaned up timezone ** names) in August, 1991, by Rich. Paul Eggert -** helped in September, 1992. Art Cancro cleaned +** helped in September, 1992. Art Cancro cleaned ** it up for ANSI C in December, 1999. ** ** This grammar has six shift/reduce conflicts. @@ -18,20 +18,22 @@ /* SUPPRESS 593 on yyerrlab *//* Label was not used */ /* SUPPRESS 593 on yynewstate *//* Label was not used */ /* SUPPRESS 595 on yypvt *//* Automatic variable may be used before set */ + +#include "sysdep.h" + #include #include #include #include - -#if TIME_WITH_SYS_TIME -# include -# include -#else -# if HAVE_SYS_TIME_H -# include -# else -# include +#include +#if HAVE_STRING_H +# if !STDC_HEADERS && HAVE_MEMORY_H +# include # endif +# include +#endif +#if HAVE_STRINGS_H +# include #endif #include "parsedate.h" @@ -89,7 +91,7 @@ typedef enum _MERIDIAN { ** union, but this is more efficient. (This routine predates the ** yacc %union construct.) */ -static char *yyInput; +static const char *yyInput; static DSTMODE yyDSTmode; static int yyHaveDate; static int yyHaveRel; @@ -717,12 +719,12 @@ date_lex(void) time_t -parsedate(char *p) +parsedate(const char *p) { extern int date_parse(void); time_t Start; - yyInput = p; + yyInput = p; /* well, its supposed to be const... */ yyYear = 0; yyMonth = 0; @@ -782,7 +784,7 @@ main(int ac, char *av[]) for ( ; ; ) { (void)printf("\t> "); (void)fflush(stdout); - if (gets(buff) == NULL || buff[0] == '\n') + if (fgets(buff, sizeof buff, stdin) == NULL || buff[0] == '\n') break; #if YYDEBUG if (strcmp(buff, "yydebug") == 0) {