diff options
author | Andy Lester <andy@petdance.com> | 2006-05-14 04:46:32 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-05-15 09:43:02 +0000 |
commit | 71207a3462fa4c2b33c5608a4362ac40e975ecdb (patch) | |
tree | c57ff006427c55220a2dc5105169b0a43a5dfe5a /proto.h | |
parent | 4c5ed6e2fe45844ca952edb0ad5be618e204247b (diff) | |
download | perl-71207a3462fa4c2b33c5608a4362ac40e975ecdb.tar.gz |
S_reguni should return its length
Message-ID: <20060514144632.GA20935@petdance.com>
p4raw-id: //depot/perl@28194
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -3516,10 +3516,9 @@ STATIC regnode* S_regbranch(pTHX_ struct RExC_state_t *state, I32 *flagp, I32 fi __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); -STATIC void S_reguni(pTHX_ const struct RExC_state_t *state, UV uv, char *s, STRLEN *lenp) +STATIC STRLEN S_reguni(pTHX_ const struct RExC_state_t *state, UV uv, char *s) __attribute__nonnull__(pTHX_1) - __attribute__nonnull__(pTHX_3) - __attribute__nonnull__(pTHX_4); + __attribute__nonnull__(pTHX_3); STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *state) __attribute__nonnull__(pTHX_1); |