diff options
Diffstat (limited to 'mpeix')
-rw-r--r-- | mpeix/mpeixish.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mpeix/mpeixish.h b/mpeix/mpeixish.h index 8364720589..f4ce38ebb3 100644 --- a/mpeix/mpeixish.h +++ b/mpeix/mpeixish.h @@ -110,12 +110,12 @@ #define Fflush(fp) fflush(fp) #define Mkdir(path,mode) mkdir((path),(mode)) -#ifndef PERL_SYS_INIT -# define PERL_SYS_INIT(c,v) PERL_FPU_INIT; PERLIO_INIT; MALLOC_INIT +#ifndef PERL_SYS_INIT_BODY +# define PERL_SYS_INIT_BODY(c,v) PERL_FPU_INIT; PERLIO_INIT; MALLOC_INIT #endif -#ifndef PERL_SYS_TERM -#define PERL_SYS_TERM() PERLIO_TERM; MALLOC_TERM +#ifndef PERL_SYS_TERM_BODY +#define PERL_SYS_TERM_BODY() PERLIO_TERM; MALLOC_TERM #endif #define BIT_BUCKET "/dev/null" |