summaryrefslogtreecommitdiffstats
path: root/include/crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/crc32.h')
-rw-r--r--include/crc32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/crc32.h b/include/crc32.h
index ff2dd99d8..2551f50de 100644
--- a/include/crc32.h
+++ b/include/crc32.h
@@ -4,8 +4,8 @@
#include <sys/types.h>
#include <stdint.h>
-extern uint32_t crc32(uint32_t seed, const unsigned char *buf, size_t len);
-extern uint32_t crc32_exclude_offset(uint32_t seed, const unsigned char *buf, size_t len,
+extern uint32_t ul_crc32(uint32_t seed, const unsigned char *buf, size_t len);
+extern uint32_t ul_crc32_exclude_offset(uint32_t seed, const unsigned char *buf, size_t len,
size_t exclude_off, size_t exclude_len);
#endif