summaryrefslogtreecommitdiff
path: root/NetWare/nw5.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-22 15:15:22 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-22 15:15:22 +0000
commit011f1a1a00b94fe919083a224d5df636f05ae32a (patch)
treecd77ae1fdc3803f999aabf2d8c618c7a1a9a0a76 /NetWare/nw5.c
parente41d30bc98dce1dea5c4a5747bd838c25bdeda5d (diff)
downloadperl-011f1a1a00b94fe919083a224d5df636f05ae32a.tar.gz
NetWare changeover from Watcom to Codewarrior, from C Aditya.
p4raw-id: //depot/perl@16076
Diffstat (limited to 'NetWare/nw5.c')
-rw-r--r--NetWare/nw5.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/NetWare/nw5.c b/NetWare/nw5.c
index b217e1cf5f..ea6d849951 100644
--- a/NetWare/nw5.c
+++ b/NetWare/nw5.c
@@ -581,8 +581,8 @@ nw_open(const char *path, int flag, ...)
pmode = va_arg(ap, int);
va_end(ap);
- if (stricmp(path, "/dev/nul")==0)
- path = "NWNUL";
+ if (stricmp(path, "/dev/null")==0)
+ path = "NUL";
return open(path, flag, pmode);
}
@@ -968,3 +968,10 @@ fork(void)
return 0;
}
+
+// added to remove undefied symbol error in CodeWarrior compilation
+int
+Perl_Ireentrant_buffer_ptr(aTHX)
+{
+ return 0;
+}