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/nwstdio.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/nwstdio.h')
-rw-r--r-- | NetWare/nwstdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NetWare/nwstdio.h b/NetWare/nwstdio.h index 1ddadb550b..4aabb0a815 100644 --- a/NetWare/nwstdio.h +++ b/NetWare/nwstdio.h @@ -52,7 +52,7 @@ #ifdef HAS_SETLINEBUF #define PerlIO_setlinebuf(f) (*PL_StdIO->pSetlinebuf)(PL_StdIO, (f)) #else -#define PerlIO_setlinebuf(f) setvbuf(f, Nullch, _IOLBF, 0) +#define PerlIO_setlinebuf(f) setvbuf(f, NULL, _IOLBF, 0) #endif #define PerlIO_isutf8(f) 0 |