From 525f13a82bb8eba6837818c7d9c23198dc008868 Mon Sep 17 00:00:00 2001 From: mainzelm Date: Tue, 18 Oct 2005 13:52:48 +0000 Subject: [PATCH] Declare proper functions --- scsh/md5.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scsh/md5.c b/scsh/md5.c index edc7d3c..45c7d16 100644 --- a/scsh/md5.c +++ b/scsh/md5.c @@ -292,7 +292,8 @@ MD5Transform(uint32 buf[4], uint32 const in[16]) * */ -static s48_value make_context(void); +static s48_value make_MD5_CTX(void); +static MD5_CTX* extract_context(s48_value); static s48_value MD5Init_stub(s48_value sch_context); static s48_value MD5Update_stub (s48_value sch_context, s48_value input); static s48_value MD5Final_stub (s48_value sch_context);