Index: lib/libc/hash/siphash.c =================================================================== RCS file: /cvs/src/lib/libc/hash/siphash.c,v retrieving revision 1.2 diff -u -p -r1.2 siphash.c --- lib/libc/hash/siphash.c 16 Jan 2015 16:48:51 -0000 1.2 +++ lib/libc/hash/siphash.c 7 Feb 2015 00:26:13 -0000 @@ -49,8 +49,8 @@ #include #include -void SipHash_CRounds(SIPHASH_CTX *, int); -void SipHash_Rounds(SIPHASH_CTX *, int); +static void SipHash_CRounds(SIPHASH_CTX *, int); +static void SipHash_Rounds(SIPHASH_CTX *, int); void SipHash_Init(SIPHASH_CTX *ctx, const SIPHASH_KEY *key) @@ -148,7 +148,7 @@ SipHash(const SIPHASH_KEY *key, int rc, #define SIP_ROTL(x, b) ((x) << (b)) | ( (x) >> (64 - (b))) -void +static void SipHash_Rounds(SIPHASH_CTX *ctx, int rounds) { while (rounds--) { @@ -172,7 +172,7 @@ SipHash_Rounds(SIPHASH_CTX *ctx, int rou } } -void +static void SipHash_CRounds(SIPHASH_CTX *ctx, int rounds) { u_int64_t m = letoh64(*(u_int64_t *)ctx->buf);