summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-10-04 18:56:21 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-10-04 18:56:21 -0400
commitcc17573eddad190ad1c08423dee750ffb0c2d01d (patch)
tree5fe4e47064ba323d06167a529d36283953adc577
parentd3921d339b6887eff21af9fb63489db9e846cec8 (diff)
downloadmongo-cc17573eddad190ad1c08423dee750ffb0c2d01d.tar.gz
Remove prototypes for __wt_cksum_hw/__wt_cksum_sw, they aren't needed
and they make lint unhappy when __wt_cksum_hw isn't referenced at all (on non-x86_64 machines).
-rw-r--r--src/support/cksum.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/support/cksum.c b/src/support/cksum.c
index 51571dd2518..209491e9844 100644
--- a/src/support/cksum.c
+++ b/src/support/cksum.c
@@ -33,9 +33,6 @@
* a fast software algorithm. __wt_cksum() provides a common entry point that
* indirects to one of these two methods.
*/
-static uint32_t __wt_cksum_sw(const void *chunk, size_t len);
-static uint32_t __wt_cksum_hw(const void *chunk, size_t len);
-
static uint32_t (*__wt_cksum_func)(const void *chunk, size_t len);
/*