From: Jim Meyering Date: Mon, 25 Apr 1994 18:34:37 +0000 (+0000) Subject: merge with 1.9.4g X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0b7d211711ca7a50312f5334ac414228b416e40;p=pspp merge with 1.9.4g --- diff --git a/lib/getdate.y b/lib/getdate.y index fd545d6ca0..3159c6d9a0 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -102,12 +102,6 @@ extern struct tm *localtime(); static int yylex (); static int yyerror (); -#if !defined(lint) && !defined(SABER) -static char RCS[] = - "$Header: str2date.y,v 2.1 90/09/06 08:15:06 cronan Exp $"; -#endif /* !defined(lint) && !defined(SABER) */ - - #define EPOCH 1970 #define HOUR(x) ((time_t)(x) * 60) #define SECSPERDAY (24L * 60L * 60L) @@ -904,7 +898,7 @@ get_date(p, now) if (! (tm = gmtime (&ftz.time))) return -1; - gmt = *tm; + gmt = *tm; /* Make a copy, in case localtime modifies *tm. */ if (! (tm = localtime (&ftz.time))) return -1;