From d6687d1b87bffb1079ded20cc31e4a507f551b44 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 24 Apr 2006 13:55:21 +0000 Subject: r15199: Try to make these prototypes match, to get the build on S390 linux going. Andrew Bartlett (This used to be commit db6746d456fb3963898170df36642c3f0882f42b) --- source4/lib/crypto/md5.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/lib/crypto/md5.h b/source4/lib/crypto/md5.h index 51aa5e4ca5..ee688dc8f4 100644 --- a/source4/lib/crypto/md5.h +++ b/source4/lib/crypto/md5.h @@ -11,9 +11,9 @@ struct MD5Context { uint8_t in[64]; }; -void MD5Init(struct MD5Context *context); -void MD5Update(struct MD5Context *context, const uint8_t *buf, +_PUBLIC_ void MD5Init(struct MD5Context *context); +_PUBLIC_ void MD5Update(struct MD5Context *context, const uint8_t *buf, uint_t len); -void MD5Final(uint8_t digest[16], struct MD5Context *context); +_PUBLIC_ void MD5Final(uint8_t digest[16], struct MD5Context *context); #endif /* !MD5_H */ -- cgit