diff options
author | Karl Williamson <khw@cpan.org> | 2019-11-21 14:21:07 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-11-21 14:21:52 -0700 |
commit | 8cd2df90afad606059f373d58f46f8729709a6f2 (patch) | |
tree | 9e456054f675f7d4bc33c55be84f51aa777d7e85 | |
parent | 95815e9df4dca7d5909d369abff1a1c4a779de0b (diff) | |
download | perl-8cd2df90afad606059f373d58f46f8729709a6f2.tar.gz |
regcomp.c: Fix order of fcn declaration
The static comes before the return type
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |