summaryrefslogtreecommitdiff
path: root/storage/innobase/include/ut0crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/ut0crc32.h')
-rw-r--r--storage/innobase/include/ut0crc32.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/innobase/include/ut0crc32.h b/storage/innobase/include/ut0crc32.h
index 178be98fee6..68af6882155 100644
--- a/storage/innobase/include/ut0crc32.h
+++ b/storage/innobase/include/ut0crc32.h
@@ -50,9 +50,10 @@ extern ut_crc32_func_t ut_crc32;
#ifdef INNODB_BUG_ENDIAN_CRC32
/** Pointer to CRC32 calculation function, which uses big-endian byte order
when converting byte strings to integers internally. */
-extern ut_crc32_func_t ut_crc32_legacy_big_endian;
+extern uint32_t ut_crc32_legacy_big_endian(const byte* buf, ulint len);
#endif /* INNODB_BUG_ENDIAN_CRC32 */
+/** Text description of CRC32 implementation */
extern const char* ut_crc32_implementation;
#endif /* ut0crc32_h */