summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-06-07 12:06:13 +0000
committerNicholas Clark <nick@ccl4.org>2005-06-07 12:06:13 +0000
commit39782eaabbd2e35b3f34463796651b4d05002ac2 (patch)
tree4e41d5c410d789f1f83a57b84d1e32a740b56d84 /pp.h
parent4d84ee25b393acce6e6f93a7fb5c292094181135 (diff)
downloadperl-39782eaabbd2e35b3f34463796651b4d05002ac2.tar.gz
POPpx needs a const equivalent.
p4raw-id: //depot/perl@24723
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pp.h b/pp.h
index abf6d9bf0b..dec43c7c82 100644
--- a/pp.h
+++ b/pp.h
@@ -129,6 +129,7 @@ Pops a long off the stack.
#define POPs (*sp--)
#define POPp (SvPVx(POPs, PL_na)) /* deprecated */
#define POPpx (SvPVx(POPs, n_a))
+#define POPpconstx (SvPVx_const(POPs, n_a))
#define POPpbytex (SvPVbytex(POPs, n_a))
#define POPn (SvNVx(POPs))
#define POPi ((IV)SvIVx(POPs))