From cbec8ebe2f7855c619451e56c6921e1537d3eba5 Mon Sep 17 00:00:00 2001 From: Dave Mitchell Date: Tue, 25 Sep 2007 18:00:32 +0000 Subject: make PERL_SYS_INIT/INIT3/TERM into functions p4raw-id: //depot/perl@31970 --- mpeix/mpeixish.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mpeix') 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" -- cgit v1.2.1