diff options
Diffstat (limited to 'lib/getdate.y')
-rw-r--r-- | lib/getdate.y | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/getdate.y b/lib/getdate.y index 2da7e077b..134a70746 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -72,9 +72,9 @@ */ struct timeb { time_t time; /* Seconds since the epoch */ - unsigned short millitm; /* Field not used */ +/*@unused@*/ unsigned short millitm; /* Field not used */ short timezone; /* Minutes west of GMT */ - short dstflag; /* Field not used */ +/*@unused@*/ short dstflag; /* Field not used */ }; #endif /* defined(HAVE_SYS_TIMEB_H) */ @@ -113,7 +113,9 @@ extern struct tm *gmtime(); extern struct tm *localtime(); #endif +/*@-exportheader@*/ extern time_t get_date(char * p, struct timeb * now); +/*@=exportheader@*/ #define yyparse getdate_yyparse #define yylex getdate_yylex @@ -590,7 +592,7 @@ static TABLE const MilitaryTable[] = { /* ARGSUSED */ static int -yyerror(const char * s) +yyerror(/*@unused@*/ const char * s) { return 0; } |