X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FTime%2Flocaltime.pm;h=c3d9fb36085c8e5cc28076def71cb6ead3e54ac9;hb=eb6393247e5113feb0b19b71cbdee87eebedbbb7;hp=18a36c7fb910f0343b724300f455699a0adc1579;hpb=ae83f3772b2dd371e676035c6714025e89d7e08f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/Time/localtime.pm b/lib/Time/localtime.pm index 18a36c7..c3d9fb3 100644 --- a/lib/Time/localtime.pm +++ b/lib/Time/localtime.pm @@ -1,10 +1,12 @@ package Time::localtime; use strict; +use 5.006_001; + use Time::tm; -BEGIN { +our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); +BEGIN { use Exporter (); - use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION); @ISA = qw(Exporter Time::tm); @EXPORT = qw(localtime ctime); @EXPORT_OK = qw( @@ -13,7 +15,7 @@ BEGIN { $tm_isdst ); %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] ); - $VERSION = 1.01; + $VERSION = 1.02; } use vars @EXPORT_OK;