summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-10-17 09:20:52 -0600
committerKarl Williamson <khw@cpan.org>2020-11-13 07:09:01 -0700
commita5d5855671af6956a8d1a13e419457afdffeb416 (patch)
tree40477c6b766bdf74919fe7c244bfe84e963857d1 /op.h
parentdf39a12d64011dffe679c5a69efd99323cf54701 (diff)
downloadperl-a5d5855671af6956a8d1a13e419457afdffeb416.tar.gz
op.h: Restrict scope of multiconcat symbols to core
These are internal only
Diffstat (limited to 'op.h')
-rw-r--r--op.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/op.h b/op.h
index 9750717562..be193038a4 100644
--- a/op.h
+++ b/op.h
@@ -1072,6 +1072,8 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
#endif
+#if defined(PERL_CORE) || defined(PERL_EXT)
+
/* Stuff for OP_MULTDEREF/pp_multideref. */
/* actions */
@@ -1111,6 +1113,8 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
#define MDEREF_MASK 0x7F
#define MDEREF_SHIFT 7
+#endif /* end CORE/EXT only */
+
#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_PP_C)
# define FATAL_ABOVE_FF_MSG \
"Use of strings with code points over 0xFF as arguments to " \