summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-06-05 13:03:18 -0600
committerKarl Williamson <public@khwilliamson.com>2011-07-03 14:05:48 -0600
commit86f766ab4498faec81165593180e92fcd9d760df (patch)
tree464f1a53938d6e91a76d0e6c45881f9dd5fa63c8 /proto.h
parent1c6f1daa3760d5e520edc7a933febeb4df46a685 (diff)
downloadperl-86f766ab4498faec81165593180e92fcd9d760df.tar.gz
Change 4 inversion list functions from S_ to Perl_
This is in preparation for them to be called from another file. Note that they are still protected by an #ifdef in embed.fnc.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/proto.h b/proto.h
index fe234d3331..db49dbe93c 100644
--- a/proto.h
+++ b/proto.h
@@ -5992,26 +5992,26 @@ PERL_STATIC_INLINE UV* S__invlist_array_init(pTHX_ SV* const invlist, const bool
#define PERL_ARGS_ASSERT__INVLIST_ARRAY_INIT \
assert(invlist)
-STATIC void S__invlist_intersection(pTHX_ SV* const a, SV* const b, SV** i)
+PERL_CALLCONV void Perl__invlist_intersection(pTHX_ SV* const a, SV* const b, SV** i)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);
#define PERL_ARGS_ASSERT__INVLIST_INTERSECTION \
assert(a); assert(b); assert(i)
-STATIC void S__invlist_invert(pTHX_ SV* const invlist)
+PERL_CALLCONV void Perl__invlist_invert(pTHX_ SV* const invlist)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT__INVLIST_INVERT \
assert(invlist)
-STATIC void S__invlist_subtract(pTHX_ SV* const a, SV* const b, SV** result)
+PERL_CALLCONV void Perl__invlist_subtract(pTHX_ SV* const a, SV* const b, SV** result)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);
#define PERL_ARGS_ASSERT__INVLIST_SUBTRACT \
assert(a); assert(b); assert(result)
-STATIC void S__invlist_union(pTHX_ SV* const a, SV* const b, SV** output)
+PERL_CALLCONV void Perl__invlist_union(pTHX_ SV* const a, SV* const b, SV** output)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);