From: Michael G. Schwern Date: Mon, 29 Sep 2008 19:55:17 +0000 (-0400) Subject: Rename localtime64.[ch] to time64.[ch] to mirror change in y2038, and the file isn... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7643e68fdb02e6f17d9f2a5801be920285971156;p=p5sagit%2Fp5-mst-13.2.git Rename localtime64.[ch] to time64.[ch] to mirror change in y2038, and the file isn't about just localtime() anymore. --- diff --git a/pp_sys.c b/pp_sys.c index ad39804..788aa7b 100644 --- a/pp_sys.c +++ b/pp_sys.c @@ -27,8 +27,8 @@ #include "EXTERN.h" #define PERL_IN_PP_SYS_C #include "perl.h" -#include "localtime64.h" -#include "localtime64.c" +#include "time64.h" +#include "time64.c" #ifdef I_SHADOW /* Shadow password support for solaris - pdo@cs.umd.edu diff --git a/localtime64.c b/time64.c similarity index 99% rename from localtime64.c rename to time64.c index 176cc40..cb74b55 100644 --- a/localtime64.c +++ b/time64.c @@ -39,7 +39,7 @@ gmtime64_r() is a 64-bit equivalent of gmtime_r(). */ -#include "localtime64.h" +#include "time64.h" static const int days_in_month[2][12] = { {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, diff --git a/localtime64.h b/time64.h similarity index 100% rename from localtime64.h rename to time64.h