summaryrefslogtreecommitdiff
path: root/unixish.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-10-21 21:31:20 +0000
committerNicholas Clark <nick@ccl4.org>2006-10-21 21:31:20 +0000
commit2f44961c9ce6c8fb4890c3bab297136d08c70307 (patch)
treeb30f39b78f512da99fcac90cf22d74bd1ec28296 /unixish.h
parent6b29934bd65555b7f172ba7a683ba95b59eb919b (diff)
downloadperl-2f44961c9ce6c8fb4890c3bab297136d08c70307.tar.gz
Add PERLIO_INIT to PERL_SYS_INIT.
I infer that this was accidentally omitted from change 29060 p4raw-id: //depot/perl@29074
Diffstat (limited to 'unixish.h')
-rw-r--r--unixish.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/unixish.h b/unixish.h
index eeb074e80c..8a1a9437ba 100644
--- a/unixish.h
+++ b/unixish.h
@@ -127,7 +127,8 @@
#define Mkdir(path,mode) mkdir((path),(mode))
#ifndef PERL_SYS_INIT
-# define PERL_SYS_INIT(c,v) MALLOC_CHECK_TAINT2(*c,*v) PERL_FPU_INIT MALLOC_INIT
+# define PERL_SYS_INIT(c,v) \
+ MALLOC_CHECK_TAINT2(*c,*v) PERL_FPU_INIT PERLIO_INIT; MALLOC_INIT
#endif
#ifndef PERL_SYS_TERM