diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-10-21 21:31:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-10-21 21:31:20 +0000 |
commit | 2f44961c9ce6c8fb4890c3bab297136d08c70307 (patch) | |
tree | b30f39b78f512da99fcac90cf22d74bd1ec28296 /unixish.h | |
parent | 6b29934bd65555b7f172ba7a683ba95b59eb919b (diff) | |
download | perl-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |