diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-07 12:06:13 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-07 12:06:13 +0000 |
commit | 39782eaabbd2e35b3f34463796651b4d05002ac2 (patch) | |
tree | 4e41d5c410d789f1f83a57b84d1e32a740b56d84 /pp.h | |
parent | 4d84ee25b393acce6e6f93a7fb5c292094181135 (diff) | |
download | perl-39782eaabbd2e35b3f34463796651b4d05002ac2.tar.gz |
POPpx needs a const equivalent.
p4raw-id: //depot/perl@24723
Diffstat (limited to 'pp.h')
-rw-r--r-- | pp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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)) |