diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-10-21 23:01:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-10-21 23:01:45 +0000 |
commit | ac5a684e91b96c66e134bedef4a18360ad57a796 (patch) | |
tree | 0e6e2a945fd32067064b3b48883ed44ebfcbfac3 /mpeix | |
parent | d0ade26cf1fee91934267b3f3efb9fd9fbf4ecfe (diff) | |
download | perl-ac5a684e91b96c66e134bedef4a18360ad57a796.tar.gz |
Add PERLIO_INIT and PERLIO_TERM to PERL_SYS_INIT* and PERL_SYS_TERM*
in */*ish.h headers.
p4raw-id: //depot/perl@29077
Diffstat (limited to 'mpeix')
-rw-r--r-- | mpeix/mpeixish.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpeix/mpeixish.h b/mpeix/mpeixish.h index 165aae7f9e..8364720589 100644 --- a/mpeix/mpeixish.h +++ b/mpeix/mpeixish.h @@ -111,11 +111,11 @@ #define Mkdir(path,mode) mkdir((path),(mode)) #ifndef PERL_SYS_INIT -# define PERL_SYS_INIT(c,v) PERL_FPU_INIT MALLOC_INIT +# define PERL_SYS_INIT(c,v) PERL_FPU_INIT; PERLIO_INIT; MALLOC_INIT #endif #ifndef PERL_SYS_TERM -#define PERL_SYS_TERM() MALLOC_TERM +#define PERL_SYS_TERM() PERLIO_TERM; MALLOC_TERM #endif #define BIT_BUCKET "/dev/null" |