diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-09 15:13:49 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-09 15:13:49 +0000 |
commit | 29595ff298b9b71b7461c2281943b6a1566c9e45 (patch) | |
tree | d80dd92b8ade455195bb795497ea69b34e5e2df3 /embed.h | |
parent | c5375c28ff9f285618d7079f4044f72aad1773ab (diff) | |
download | perl-29595ff298b9b71b7461c2281943b6a1566c9e45.tar.gz |
MAD changes for bare skipspace()
p4raw-id: //depot/perl@27439
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1783,6 +1783,13 @@ #define newMADPROP Perl_newMADPROP #define mad_free Perl_mad_free #endif +# if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) +#ifdef PERL_CORE +#define skipspace0 S_skipspace0 +#define skipspace1 S_skipspace1 +#define skipspace2 S_skipspace2 +#endif +# endif #endif #define ck_anoncode Perl_ck_anoncode #define ck_bitop Perl_ck_bitop @@ -3919,6 +3926,13 @@ #define newMADPROP(a,b,c,d) Perl_newMADPROP(aTHX_ a,b,c,d) #define mad_free(a) Perl_mad_free(aTHX_ a) #endif +# if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) +#ifdef PERL_CORE +#define skipspace0(a) S_skipspace0(aTHX_ a) +#define skipspace1(a) S_skipspace1(aTHX_ a) +#define skipspace2(a,b) S_skipspace2(aTHX_ a,b) +#endif +# endif #endif #define ck_anoncode(a) Perl_ck_anoncode(aTHX_ a) #define ck_bitop(a) Perl_ck_bitop(aTHX_ a) |