From: Brian Aker Date: Thu, 22 Nov 2012 10:16:56 +0000 (-0500) Subject: Remove extern (these are not extern). X-Git-Tag: 1.0.15~14^2~4 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=15e2433f96d9d3826937beedf6390714ebfd877b;p=m6w6%2Flibmemcached Remove extern (these are not extern). --- diff --git a/libhashkit/algorithm.h b/libhashkit/algorithm.h index e748a996..93cdc1da 100644 --- a/libhashkit/algorithm.h +++ b/libhashkit/algorithm.h @@ -43,10 +43,6 @@ #pragma once -#ifdef __cplusplus -extern "C" { -#endif - uint32_t hashkit_one_at_a_time(const char *key, size_t key_length, void *context); uint32_t hashkit_fnv1_64(const char *key, size_t key_length, void *context); @@ -68,7 +64,3 @@ uint32_t hashkit_murmur3(const char *key, size_t key_length, void *context); uint32_t hashkit_jenkins(const char *key, size_t key_length, void *context); uint32_t hashkit_md5(const char *key, size_t key_length, void *context); - -#ifdef __cplusplus -} -#endif