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 /NetWare/nwperlsys.h | |
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 'NetWare/nwperlsys.h')
-rw-r--r-- | NetWare/nwperlsys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NetWare/nwperlsys.h b/NetWare/nwperlsys.h index ed1b632e11..932b06664c 100644 --- a/NetWare/nwperlsys.h +++ b/NetWare/nwperlsys.h @@ -342,7 +342,7 @@ PerlStdIOGetBase(struct IPerlStdIO* piPerl, FILE* pf) FILE *f = pf; return FILE_base(f); #else - return Nullch; + return NULL; #endif } @@ -375,7 +375,7 @@ PerlStdIOGetPtr(struct IPerlStdIO* piPerl, FILE* pf) FILE *f = pf; return FILE_ptr(f); #else - return Nullch; + return NULL; #endif } |