From 315b33540a008fba0af1cdbad5d3448d98a6e73c Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 20 Apr 2012 23:10:22 +0200 Subject: Mark several functions static These are not needed outside of the corresponding compilation units. Spotted with "-Wmissing-prototypes". Signed-off-by: Lukas Fleischer --- src/sha1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sha1.c') diff --git a/src/sha1.c b/src/sha1.c index 08d5e5e..e1bb8cc 100644 --- a/src/sha1.c +++ b/src/sha1.c @@ -67,7 +67,7 @@ #define R4(v, w, x, y, z, i) z += (w ^ x ^ y) + blk (i) + 0xCA62C1D6 + \ rol (v, 5); w = rol (w, 30); -void +static void sha1_transform (uint32_t state[5], const uint8_t buffer[64]) { typedef union { -- cgit v1.2.3-54-g00ecf