summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-11-21 14:21:07 -0700
committerKarl Williamson <khw@cpan.org>2019-11-21 14:21:52 -0700
commit8cd2df90afad606059f373d58f46f8729709a6f2 (patch)
tree9e456054f675f7d4bc33c55be84f51aa777d7e85
parent95815e9df4dca7d5909d369abff1a1c4a779de0b (diff)
downloadperl-8cd2df90afad606059f373d58f46f8729709a6f2.tar.gz
regcomp.c: Fix order of fcn declaration
The static comes before the return type
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 2c5cbfef7b..1a6ab15b9c 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -16938,7 +16938,7 @@ S_output_posix_warnings(pTHX_ RExC_state_t *pRExC_state, AV* posix_warnings)
UPDATE_WARNINGS_LOC(RExC_parse);
}
-Size_t PERL_STATIC_INLINE
+PERL_STATIC_INLINE Size_t
S_find_first_differing_byte_pos(const U8 * s1, const U8 * s2, const Size_t max)
{
const U8 * const start = s1;