summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2007-05-02 19:45:54 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-05-03 09:30:08 +0000
commitc86f7df56cc91b3d77b0e549030650319f540a6b (patch)
tree9ee270048ed4362bdf1c9a911cc97479f63250de /proto.h
parent08aeb9f701fa786d490e79e99ac2f9f9de229da3 (diff)
downloadperl-c86f7df56cc91b3d77b0e549030650319f540a6b.tar.gz
The revenge of the consts
Message-ID: <20070503054554.GA30975@petdance.com> p4raw-id: //depot/perl@31123
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 85f2c11f11..1199789c01 100644
--- a/proto.h
+++ b/proto.h
@@ -3650,7 +3650,9 @@ STATIC I32 S_regcurly(const char *)
STATIC regnode* S_reg_node(pTHX_ struct RExC_state_t *state, U8 op)
__attribute__nonnull__(pTHX_1);
-STATIC UV S_reg_recode(pTHX_ const char value, SV **encp);
+STATIC UV S_reg_recode(pTHX_ const char value, SV **encp)
+ __attribute__nonnull__(pTHX_2);
+
STATIC regnode* S_regpiece(pTHX_ struct RExC_state_t *state, I32 *flagp, U32 depth)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2);