diff options
author | Karl Williamson <khw@cpan.org> | 2021-03-11 19:57:10 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2022-09-01 10:28:26 -0600 |
commit | 1362b2644fe28482093e6a00619d9f8a45013388 (patch) | |
tree | 14e8ee2b76d46d97ff24ac0cd629ffe42cb98332 /embed.h | |
parent | ef054375a834ab87fd0f1744c71a119333ff36bd (diff) | |
download | perl-1362b2644fe28482093e6a00619d9f8a45013388.tar.gz |
Change internal function name to be standards compliant
This is in preparation for working on it; the new name, mem_collxfrm_ is
in compliance with the C Standard; the old was not.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1028,6 +1028,11 @@ # if defined(PERL_IN_GV_C) || defined(PERL_IN_UNIVERSAL_C) #define gv_stashsvpvn_cached(a,b,c,d) Perl_gv_stashsvpvn_cached(aTHX_ a,b,c,d) # endif +# if defined(PERL_IN_LOCALE_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_MATHOMS_C) +# if defined(USE_LOCALE_COLLATE) +#define mem_collxfrm_(a,b,c,d) Perl_mem_collxfrm_(aTHX_ a,b,c,d) +# endif +# endif # if defined(PERL_IN_REGCOMP_C) #define add_above_Latin1_folds(a,b,c) S_add_above_Latin1_folds(aTHX_ a,b,c) #define add_data S_add_data @@ -1749,11 +1754,6 @@ # endif # endif # endif -# if defined(PERL_IN_LOCALE_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_MATHOMS_C) -# if defined(USE_LOCALE_COLLATE) -#define _mem_collxfrm(a,b,c,d) Perl__mem_collxfrm(aTHX_ a,b,c,d) -# endif -# endif # if defined(PERL_IN_MALLOC_C) #define adjust_size_and_find_bucket S_adjust_size_and_find_bucket # endif |