From: Tim Jenness Date: Wed, 16 Aug 2000 16:42:35 +0000 (-1000) Subject: Cwd.pm now uses strict X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b060a406751953a32a71f4f78250712ec107c8e2;p=p5sagit%2Fp5-mst-13.2.git Cwd.pm now uses strict Message-ID: p4raw-id: //depot/perl@6672 --- diff --git a/lib/Cwd.pm b/lib/Cwd.pm index ecd0882..d4abc9a 100644 --- a/lib/Cwd.pm +++ b/lib/Cwd.pm @@ -66,16 +66,15 @@ kept up to date if all packages which use chdir import it from Cwd. =cut -## use strict; +use strict; use Carp; -$VERSION = '2.02'; +our $VERSION = '2.03'; -require Exporter; -@ISA = qw(Exporter); -@EXPORT = qw(cwd getcwd fastcwd fastgetcwd); -@EXPORT_OK = qw(chdir abs_path fast_abs_path realpath fast_realpath); +use base qw/ Exporter /; +our @EXPORT = qw(cwd getcwd fastcwd fastgetcwd); +our @EXPORT_OK = qw(chdir abs_path fast_abs_path realpath fast_realpath); # The 'natural and safe form' for UNIX (pwd may be setuid root)