From: Jarkko Hietaniemi Date: Fri, 27 May 2005 13:15:36 +0000 (+0300) Subject: add PERL_CALLCONV to PERL_CKDEF and PERL_PPDEF X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0159f81bfe8e286f119bb9a00f0567234a23235b;p=p5sagit%2Fp5-mst-13.2.git add PERL_CALLCONV to PERL_CKDEF and PERL_PPDEF Message-ID: p4raw-id: //depot/perl@24595 --- diff --git a/perl.h b/perl.h index a82e0b1..9aaf7b4 100644 --- a/perl.h +++ b/perl.h @@ -3957,8 +3957,8 @@ struct tempsym; /* defined in pp_pack.c */ #endif #undef PERL_CKDEF #undef PERL_PPDEF -#define PERL_CKDEF(s) OP *s (pTHX_ OP *o); -#define PERL_PPDEF(s) OP *s (pTHX); +#define PERL_CKDEF(s) PERL_CALLCONV OP *s (pTHX_ OP *o); +#define PERL_PPDEF(s) PERL_CALLCONV OP *s (pTHX); #include "proto.h"