diff options
author | Andy Lester <andy@petdance.com> | 2005-11-17 01:53:38 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-17 14:09:10 +0000 |
commit | f0f5dc9dd6402292e51fb413bf662b3e54145006 (patch) | |
tree | 66d1af59974b03ada9283eeb01e1e7eec3af33e9 /proto.h | |
parent | bfc44f79c8382df2655da380f044c9068132d2ec (diff) | |
download | perl-f0f5dc9dd6402292e51fb413bf662b3e54145006.tar.gz |
Sort subs now in embed.fnc
Message-ID: <20051117135338.GA31715@petdance.com>
p4raw-id: //depot/perl@26147
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -3307,6 +3307,45 @@ STATIC SV* S_method_common(pTHX_ SV* meth, U32* hashp) #endif +#if defined(PERL_IN_PP_SORT_C) || defined(PERL_DECL_PROT) +STATIC I32 S_sv_ncmp(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_sv_i_ncmp(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_amagic_ncmp(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_amagic_i_ncmp(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_amagic_cmp(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_amagic_cmp_locale(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_sortcv(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_sortcv_xsub(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +STATIC I32 S_sortcv_stacked(pTHX_ SV *a, SV *b) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + +#endif + #if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT) STATIC OP* S_doform(pTHX_ CV *cv, GV *gv, OP *retop) __attribute__nonnull__(pTHX_1) |