summaryrefslogtreecommitdiff
path: root/win32/perlhost.h
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 /win32/perlhost.h
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 'win32/perlhost.h')
-rw-r--r--win32/perlhost.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h
index 9974fd8b4b..b9d4e1e4ab 100644
--- a/win32/perlhost.h
+++ b/win32/perlhost.h
@@ -623,7 +623,7 @@ PerlStdIOGetBase(struct IPerlStdIO* piPerl, FILE* pf)
FILE *f = pf;
return FILE_base(f);
#else
- return Nullch;
+ return NULL;
#endif
}
@@ -656,7 +656,7 @@ PerlStdIOGetPtr(struct IPerlStdIO* piPerl, FILE* pf)
FILE *f = pf;
return FILE_ptr(f);
#else
- return Nullch;
+ return NULL;
#endif
}