diff options
author | Steve Peters <steve@fisharerojo.org> | 2007-12-23 00:39:17 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2007-12-23 00:39:17 +0000 |
commit | 4e205ed637fa853d115099170e6e11407ca49619 (patch) | |
tree | 25ca3fcb48f529227c43cd5a88703764ce2c1039 /vmesa | |
parent | dfe169eecccf8121d08f5b1eedd95ae222cf7b9e (diff) | |
download | perl-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 'vmesa')
-rw-r--r-- | vmesa/vmesa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vmesa/vmesa.c b/vmesa/vmesa.c index 7e3635f357..59dd19b6c1 100644 --- a/vmesa/vmesa.c +++ b/vmesa/vmesa.c @@ -136,7 +136,7 @@ do_aspawn(SV* really, SV **mark, SV **sp) fdMap[STDOUT_FILENO] = Perl_stdout_fd; fdMap[STDERR_FILENO] = STDERR_FILENO; nFd = 3; - *a = Nullch; + *a = NULL; /*-----------------------------------------------------*/ /* Will execvp() use PATH? */ /*-----------------------------------------------------*/ @@ -272,7 +272,7 @@ do_spawn(char *cmd, int execf) if (*s) *s++ = '\0'; } - *a = Nullch; + *a = NULL; fdMap[STDIN_FILENO] = Perl_stdin_fd; fdMap[STDOUT_FILENO] = Perl_stdout_fd; fdMap[STDERR_FILENO] = STDERR_FILENO; @@ -421,7 +421,7 @@ my_popen(char *cmd, char *mode) close(pFd[that]); } else - fd = Nullfp; + fd = NULL; } else { @@ -434,7 +434,7 @@ my_popen(char *cmd, char *mode) } } else - fd = Nullfp; + fd = NULL; return (fd); } |