summaryrefslogtreecommitdiff
path: root/lib/Cwd.pm
diff options
context:
space:
mode:
authorTim Jenness <tjenness@cpan.org>2000-08-16 06:42:35 -1000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-17 03:04:35 +0000
commitb060a406751953a32a71f4f78250712ec107c8e2 (patch)
treeb30c6f1b0e557d7ca951fd419e7e8b03857a07a5 /lib/Cwd.pm
parent46f3656755f4dcd943e54fd6c5ad2f077d5ce681 (diff)
downloadperl-b060a406751953a32a71f4f78250712ec107c8e2.tar.gz
Cwd.pm now uses strict
Message-ID: <Pine.LNX.4.21.0008161639510.1135-100000@lapaki.jach.hawaii.edu> p4raw-id: //depot/perl@6672
Diffstat (limited to 'lib/Cwd.pm')
-rw-r--r--lib/Cwd.pm11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/Cwd.pm b/lib/Cwd.pm
index ecd088298b..d4abc9acbc 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)