Browse Source

userland gets static on functions only used within a file.

ok tedu@
OPENBSD_5_7
dlg 9 years ago
parent
commit
eed98717a6
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/lib/libc/hash/siphash.c

+ 5
- 5
src/lib/libc/hash/siphash.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: siphash.c,v 1.2 2015/01/16 16:48:51 deraadt Exp $ */
/* $OpenBSD: siphash.c,v 1.3 2015/02/07 05:40:59 dlg Exp $ */
/*- /*-
* Copyright (c) 2013 Andre Oppermann <andre@FreeBSD.org> * Copyright (c) 2013 Andre Oppermann <andre@FreeBSD.org>
@ -49,8 +49,8 @@
#include <string.h> #include <string.h>
#include <siphash.h> #include <siphash.h>
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 void
SipHash_Init(SIPHASH_CTX *ctx, const SIPHASH_KEY *key) SipHash_Init(SIPHASH_CTX *ctx, const SIPHASH_KEY *key)
@ -148,7 +148,7 @@ SipHash(const SIPHASH_KEY *key, int rc, int rf, const void *src, size_t len)
#define SIP_ROTL(x, b) ((x) << (b)) | ( (x) >> (64 - (b))) #define SIP_ROTL(x, b) ((x) << (b)) | ( (x) >> (64 - (b)))
void
static void
SipHash_Rounds(SIPHASH_CTX *ctx, int rounds) SipHash_Rounds(SIPHASH_CTX *ctx, int rounds)
{ {
while (rounds--) { while (rounds--) {
@ -172,7 +172,7 @@ SipHash_Rounds(SIPHASH_CTX *ctx, int rounds)
} }
} }
void
static void
SipHash_CRounds(SIPHASH_CTX *ctx, int rounds) SipHash_CRounds(SIPHASH_CTX *ctx, int rounds)
{ {
u_int64_t m = letoh64(*(u_int64_t *)ctx->buf); u_int64_t m = letoh64(*(u_int64_t *)ctx->buf);


Loading…
Cancel
Save