diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-05-24 10:01:05 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-05-25 15:19:35 +0200 |
commit | 7a107a1bc626406efe8c970ef53b5af68609bfe2 (patch) | |
tree | 740955b536c799910f792a5c46d94b86c7dca198 /compare258.c | |
parent | 9dd427a1566a6273c4b409269a414459ccbdd2c6 (diff) |
Rename match_p.h to match_tpl.h since it has been converted to a template header file.
Diffstat (limited to 'compare258.c')
-rw-r--r-- | compare258.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compare258.c b/compare258.c index 76d0627..cb75d09 100644 --- a/compare258.c +++ b/compare258.c @@ -61,7 +61,7 @@ int32_t compare258_c(const unsigned char *src0, const unsigned char *src1) { #define COMPARE256 compare256_c_static #define COMPARE258 compare258_c_static -#include "match_p.h" +#include "match_tpl.h" #ifdef UNALIGNED_OK /* UNALIGNED_OK, 16-bit integer comparison */ @@ -101,7 +101,7 @@ int32_t compare258_unaligned_16(const unsigned char *src0, const unsigned char * #define COMPARE256 compare256_unaligned_16_static #define COMPARE258 compare258_unaligned_16_static -#include "match_p.h" +#include "match_tpl.h" #ifdef HAVE_BUILTIN_CTZ /* UNALIGNED_OK, 32-bit integer comparison */ @@ -139,7 +139,7 @@ int32_t compare258_unaligned_32(const unsigned char *src0, const unsigned char * #define COMPARE256 compare256_unaligned_32_static #define COMPARE258 compare258_unaligned_32_static -#include "match_p.h" +#include "match_tpl.h" #endif @@ -179,7 +179,7 @@ int32_t compare258_unaligned_64(const unsigned char *src0, const unsigned char * #define COMPARE256 compare256_unaligned_64_static #define COMPARE258 compare258_unaligned_64_static -#include "match_p.h" +#include "match_tpl.h" #endif |