r15199: Try to make these prototypes match, to get the build on S390 linux going.
authorAndrew Bartlett <abartlet@samba.org>
Mon, 24 Apr 2006 13:55:21 +0000 (13:55 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:04:16 +0000 (14:04 -0500)
Andrew Bartlett

source/lib/crypto/md5.h

index 51aa5e4ca555031352003c370eaf6a1b5bdce512..ee688dc8f42a0ae25b0e805b10a260822b07258c 100644 (file)
@@ -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 */