diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-08 13:40:48 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-08 13:40:48 +0000 |
commit | 1dba731d9f7b0a03b8cecb69b9d80500a283425e (patch) | |
tree | 8ef86d80db20e147b6170a449e303a7b1c1c194d /embed.h | |
parent | 69f571849d518b6e7953b40abe5d05d244a0d6f9 (diff) | |
download | perl-1dba731d9f7b0a03b8cecb69b9d80500a283425e.tar.gz |
Add MAD changes to pad code (new function Perl_pad_peg)
p4raw-id: //depot/perl@27419
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1721,6 +1721,11 @@ #endif #ifdef PERL_IMPLICIT_CONTEXT #endif +#ifdef PERL_MAD +#ifdef PERL_CORE +#define pad_peg Perl_pad_peg +#endif +#endif #define ck_anoncode Perl_ck_anoncode #define ck_bitop Perl_ck_bitop #define ck_chdir Perl_ck_chdir @@ -3796,6 +3801,11 @@ #endif #ifdef PERL_IMPLICIT_CONTEXT #endif +#ifdef PERL_MAD +#ifdef PERL_CORE +#define pad_peg Perl_pad_peg +#endif +#endif #define ck_anoncode(a) Perl_ck_anoncode(aTHX_ a) #define ck_bitop(a) Perl_ck_bitop(aTHX_ a) #define ck_chdir(a) Perl_ck_chdir(aTHX_ a) |