diff options
author | Andy Lester <andy@petdance.com> | 2006-03-29 04:13:36 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-03-30 08:17:12 +0000 |
commit | 52657f304589f1061955524e1c3f71ab033cd3d4 (patch) | |
tree | 3f42ebf551b77b1369ca8102a5dbefef44550a6b /proto.h | |
parent | 2a958fe27787f33e3614e1257dc03278f1301922 (diff) | |
download | perl-52657f304589f1061955524e1c3f71ab033cd3d4.tar.gz |
Clean up regexec.c, and remove two functions
Message-ID: <20060329161336.GA12456@petdance.com>
p4raw-id: //depot/perl@27630
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 14 |
1 files changed, 4 insertions, 10 deletions
@@ -1265,10 +1265,12 @@ PERL_CALLCONV void Perl_qerror(pTHX_ SV* err) __attribute__nonnull__(pTHX_1); PERL_CALLCONV void Perl_sortsv(pTHX_ SV** array, size_t num_elts, SVCOMPARE_t cmp) - __attribute__nonnull__(pTHX_1); + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_3); PERL_CALLCONV void Perl_sortsv_flags(pTHX_ SV** array, size_t num_elts, SVCOMPARE_t cmp, U32 flags) - __attribute__nonnull__(pTHX_1); + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_3); PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv) __attribute__nonnull__(pTHX_1); @@ -3617,19 +3619,11 @@ STATIC char* S_regcppop(pTHX); STATIC void S_cache_re(pTHX_ regexp *prog) __attribute__nonnull__(pTHX_1); -STATIC U8* S_reghop(pTHX_ U8 *pos, I32 off) - __attribute__warn_unused_result__ - __attribute__nonnull__(pTHX_1); - STATIC U8* S_reghop3(U8 *pos, I32 off, U8 *lim) __attribute__warn_unused_result__ __attribute__nonnull__(1) __attribute__nonnull__(3); -STATIC U8* S_reghopmaybe(pTHX_ U8 *pos, I32 off) - __attribute__warn_unused_result__ - __attribute__nonnull__(pTHX_1); - STATIC U8* S_reghopmaybe3(U8 *pos, I32 off, U8 *lim) __attribute__warn_unused_result__ __attribute__nonnull__(1) |