Message-ID: <14902.56087.678086.725773@rls.cx>
fastgetcwd is defined using a glob alias on a $^O dependent basis -
and there was no default assignment or perl subroutine.
p4raw-id: //depot/perl@8098
use Carp;
-our $VERSION = '2.03';
+our $VERSION = '2.04';
use base qw/ Exporter /;
our @EXPORT = qw(cwd getcwd fastcwd fastgetcwd);
}
}
+# set a reasonable (and very safe) default for fastgetcwd, in case it
+# isn't redefined later (20001212 rspier)
+*fastgetcwd = \&cwd;
# By Brandon S. Allbery
#