diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-16 20:43:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-16 20:43:15 +0000 |
commit | 14fe70c2d1778829732c0549106909ab5b329425 (patch) | |
tree | 3fbb301923e0067108295c0e7429e42c1ae9e55f /lib/Time | |
parent | 88d01e8dd0be693cf54a3bafc9974fa70eda2ddd (diff) | |
download | perl-14fe70c2d1778829732c0549106909ab5b329425.tar.gz |
Change use|require 5.005_64 to use|require 5.6.1.
p4raw-id: //depot/perl@12041
Diffstat (limited to 'lib/Time')
-rw-r--r-- | lib/Time/gmtime.pm | 2 | ||||
-rw-r--r-- | lib/Time/localtime.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Time/gmtime.pm b/lib/Time/gmtime.pm index 6ff4bc84a2..a6b95f3471 100644 --- a/lib/Time/gmtime.pm +++ b/lib/Time/gmtime.pm @@ -2,7 +2,7 @@ package Time::gmtime; use strict; use Time::tm; -use 5.005_64; +use 5.6.1; our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); BEGIN { use Exporter (); diff --git a/lib/Time/localtime.pm b/lib/Time/localtime.pm index 0ca07af166..5ac12e004b 100644 --- a/lib/Time/localtime.pm +++ b/lib/Time/localtime.pm @@ -2,7 +2,7 @@ package Time::localtime; use strict; use Time::tm; -use 5.005_64; +use 5.6.1; our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); BEGIN { use Exporter (); |