diff options
Diffstat (limited to 'djgpp/djgpp.c')
-rw-r--r-- | djgpp/djgpp.c | 4 |
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; |