diff options
author | Andy Lester <andy@petdance.com> | 2006-05-15 03:54:24 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-05-16 13:14:12 +0000 |
commit | 0ce71af7a9fc04f228d597a47acc6b50ded81784 (patch) | |
tree | ca62805f9a12df7882587b4b361c23e39369f03f /proto.h | |
parent | 9674d46a132a274aad55231acfd004cbf1e42f04 (diff) | |
download | perl-0ce71af7a9fc04f228d597a47acc6b50ded81784.tar.gz |
Refactoring reghops
Message-ID: <20060515135424.GA31585@petdance.com>
p4raw-id: //depot/perl@28206
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3648,12 +3648,12 @@ STATIC CHECKPOINT S_regcppush(pTHX_ I32 parenfloor); STATIC char* S_regcppop(pTHX_ const regexp *rex) __attribute__nonnull__(pTHX_1); -STATIC U8* S_reghop3(U8 *pos, I32 off, U8 *lim) +STATIC U8* S_reghop3(U8 *pos, I32 off, const U8 *lim) __attribute__warn_unused_result__ __attribute__nonnull__(1) __attribute__nonnull__(3); -STATIC U8* S_reghopmaybe3(U8 *pos, I32 off, U8 *lim) +STATIC U8* S_reghopmaybe3(U8 *pos, I32 off, const U8 *lim) __attribute__warn_unused_result__ __attribute__nonnull__(1) __attribute__nonnull__(3); |