summaryrefslogtreecommitdiff
path: root/djgpp
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2007-12-23 00:39:17 +0000
committerSteve Peters <steve@fisharerojo.org>2007-12-23 00:39:17 +0000
commit4e205ed637fa853d115099170e6e11407ca49619 (patch)
tree25ca3fcb48f529227c43cd5a88703764ce2c1039 /djgpp
parentdfe169eecccf8121d08f5b1eedd95ae222cf7b9e (diff)
downloadperl-4e205ed637fa853d115099170e6e11407ca49619.tar.gz
Nullch and others were still alive and well in some of the operating
system specific directories. I think I've chainsawed all of them now, but I can't guarantee that it compiles anywhere from win32. p4raw-id: //depot/perl@32713
Diffstat (limited to 'djgpp')
-rw-r--r--djgpp/djgpp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/djgpp/djgpp.c b/djgpp/djgpp.c
index caa4640363..9370a2901c 100644
--- a/djgpp/djgpp.c
+++ b/djgpp/djgpp.c
@@ -129,7 +129,7 @@ do_aspawn (pTHX_ SV *really,SV **mark,SV **sp)
*a++ = SvPVx(*mark, n_a);
else
*a++ = "";
- *a = Nullch;
+ *a = NULL;
if (argv[0][0] != '/' && argv[0][0] != '\\'
&& !(argv[0][0] && argv[0][1] == ':'
@@ -204,7 +204,7 @@ doshell:
if (*s)
*s++='\0';
}
- *a=Nullch;
+ *a=NULL;
if (!PL_Argv[0])
return -1;