From d5696ae5623e03bfceb059407847facd507467c5 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 5 Jan 2003 15:31:09 +0000 Subject: [PATCH] Make SHA_Core_Init() (only used in this file) static. git-svn-id: svn://svn.tartarus.org/sgt/putty@2470 cda61777-01e9-0310-a592-d414129be87e --- sshsha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshsha.c b/sshsha.c index 4bac4fdc..d8fc5694 100644 --- a/sshsha.c +++ b/sshsha.c @@ -13,7 +13,7 @@ #define rol(x,y) ( ((x) << (y)) | (((uint32)x) >> (32-y)) ) -void SHA_Core_Init(uint32 h[5]) +static void SHA_Core_Init(uint32 h[5]) { h[0] = 0x67452301; h[1] = 0xefcdab89; -- 2.11.0