diff options
Diffstat (limited to 'gnu/usr.bin/perl/lib/Time/localtime.pm')
-rw-r--r-- | gnu/usr.bin/perl/lib/Time/localtime.pm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/lib/Time/localtime.pm b/gnu/usr.bin/perl/lib/Time/localtime.pm index c3d9fb36085..f2ef0840383 100644 --- a/gnu/usr.bin/perl/lib/Time/localtime.pm +++ b/gnu/usr.bin/perl/lib/Time/localtime.pm @@ -4,7 +4,13 @@ use 5.006_001; use Time::tm; -our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); +our (@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); +our ( + $tm_sec, $tm_min, $tm_hour, $tm_mday, + $tm_mon, $tm_year, $tm_wday, $tm_yday, + $tm_isdst +); + BEGIN { use Exporter (); @ISA = qw(Exporter Time::tm); @@ -15,9 +21,8 @@ BEGIN { $tm_isdst ); %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] ); - $VERSION = 1.02; + $VERSION = 1.03; } -use vars @EXPORT_OK; sub populate (@) { return unless @_; |