diff options
author | David Mitchell <davem@iabyn.com> | 2016-07-14 10:47:01 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-08-03 20:54:40 +0100 |
commit | 6cb4123eb32087e8546f1056ca7b4e761c28d9b7 (patch) | |
tree | 57c7b08af980dbfeb55d53050f02ae07fb89d5e4 /embed.h | |
parent | d3d9da4a748f12980e8b04fe471398bf91237705 (diff) | |
download | perl-6cb4123eb32087e8546f1056ca7b4e761c28d9b7.tar.gz |
make op.c:S_alloc_LOGOP() non-static
This is principally so that it can be accessed from perly.y too.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1141,6 +1141,7 @@ #ifdef PERL_CORE #define Slab_Alloc(a) Perl_Slab_Alloc(aTHX_ a) #define Slab_Free(a) Perl_Slab_Free(aTHX_ a) +#define alloc_LOGOP(a,b,c) Perl_alloc_LOGOP(aTHX_ a,b,c) #define allocmy(a,b,c) Perl_allocmy(aTHX_ a,b,c) #define amagic_is_enabled(a) Perl_amagic_is_enabled(aTHX_ a) #define apply(a,b,c) Perl_apply(aTHX_ a,b,c) |