summaryrefslogtreecommitdiff
path: root/lib/Cwd.pm
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters.nicoh.com>1996-01-02 03:28:57 +0000
committerAndy Dougherty <doughera.lafayette.edu>1996-01-02 03:28:57 +0000
commite7ae011613ab9e1683332421cf9ea7b4c5e94c94 (patch)
tree174c9adb8397ef3a1225cc07899e9c8b6814680d /lib/Cwd.pm
parentc1bce5d7c4f10bb970b094ec986540c244295278 (diff)
downloadperl-e7ae011613ab9e1683332421cf9ea7b4c5e94c94.tar.gz
VMS patches.
Diffstat (limited to 'lib/Cwd.pm')
-rw-r--r--lib/Cwd.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Cwd.pm b/lib/Cwd.pm
index a627354f1b..bc206db4d4 100644
--- a/lib/Cwd.pm
+++ b/lib/Cwd.pm
@@ -49,7 +49,7 @@ kept up to date it all packages which use chdir import it from Cwd.
=cut
@ISA = qw(Exporter);
-@EXPORT = qw(cwd getcwd fastcwd);
+@EXPORT = qw(cwd getcwd fastcwd fastgetcwd);
@EXPORT_OK = qw(chdir);
# use strict;
@@ -251,6 +251,7 @@ if ($osname eq 'VMS') {
*cwd = \&_vms_pwd;
*getcwd = \&_vms_pwd;
+ *fastcwd = \&_vms_cwd;
*fastgetcwd = \&_vms_cwd;
}
elsif ($osname eq 'NT') {