summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-04-24 13:55:21 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:04:16 -0500
commitd6687d1b87bffb1079ded20cc31e4a507f551b44 (patch)
tree87d23a4ab4f6ecec4a4a3b1999f012f89544eaf8 /source4
parentc33f6b2c370379dfd010600adc59e7439f1318f7 (diff)
downloadsamba-d6687d1b87bffb1079ded20cc31e4a507f551b44.tar.gz
samba-d6687d1b87bffb1079ded20cc31e4a507f551b44.tar.bz2
samba-d6687d1b87bffb1079ded20cc31e4a507f551b44.zip
r15199: Try to make these prototypes match, to get the build on S390 linux going.
Andrew Bartlett (This used to be commit db6746d456fb3963898170df36642c3f0882f42b)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/crypto/md5.h6
1 files changed, 3 insertions, 3 deletions
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 */