summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2016-07-14 10:47:01 +0100
committerDavid Mitchell <davem@iabyn.com>2016-08-03 20:54:40 +0100
commit6cb4123eb32087e8546f1056ca7b4e761c28d9b7 (patch)
tree57c7b08af980dbfeb55d53050f02ae07fb89d5e4 /embed.h
parentd3d9da4a748f12980e8b04fe471398bf91237705 (diff)
downloadperl-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/embed.h b/embed.h
index 8cdb625bbf..e5cd19365c 100644
--- a/embed.h
+++ b/embed.h
@@ -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)