the XS fails. (Needed to bootstrap the core build)
p4raw-id: //depot/perl@26319
use Exporter;
use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
-$VERSION = '3.14_01';
+$VERSION = '3.14_02';
@ISA = qw/ Exporter /;
@EXPORT = qw(cwd getcwd fastcwd fastgetcwd);
# isn't redefined later (20001212 rspier)
*fastgetcwd = \&cwd;
+# By Brandon S. Allbery
+#
+# Usage: $cwd = getcwd();
+
+sub _perl_getcwd
+{
+ abs_path('.');
+}
+
# By John Bazik
#
# Usage: $cwd = &fastcwd;
# In case the XS version doesn't load.
*abs_path = \&_perl_abs_path unless defined &abs_path;
+*getcwd = \&_perl_getcwd unless defined &getcwd;
# added function alias for those of us more
# used to the libc function. --tchrist 27-Jan-00