diff options
author | Craig A. Berry <craigberry@mac.com> | 2009-04-25 17:51:38 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2009-04-25 18:11:55 -0500 |
commit | d95a2ea538e6c332f36c34ca45b78d6ad93c3a1f (patch) | |
tree | 7af896a0f675ba7495ed49cb5f70ad4a26e60d65 /time64.h | |
parent | 4efe685a06ca02d3bdef0d82787eb46835ec9e7e (diff) | |
download | perl-d95a2ea538e6c332f36c34ca45b78d6ad93c3a1f.tar.gz |
Make time64 use NV for time_t, I32 for year, not Quad_t.
This means it should run on anything that does not have a 64-bit
integer type available but does have a double. Presumably this
includes platforms that define PERL_MICRO, so we now use the
same extended time implementation for everything that runs Perl.
Diffstat (limited to 'time64.h')
-rw-r--r-- | time64.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ /* Set our custom types */ typedef INT_64_T Int64; typedef Int64 Time64_T; -typedef Int64 Year; +typedef I32 Year; /* A copy of the tm struct but with a 64 bit year */ |