summaryrefslogtreecommitdiffstats
path: root/imap
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-07-21 07:32:09 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-07-21 07:32:09 +0000
commit6693d31057e69d8aed2edd0c4fc460959cd8c929 (patch)
tree1c176e328208c1657376637a6298538ea2dcc597 /imap
parenta0c711d6de661ff7380ea287eba400b8b43c722c (diff)
Try to be smart about integer types.
Diffstat (limited to 'imap')
-rw-r--r--imap/md5.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/imap/md5.h b/imap/md5.h
index a7465211..e0b70191 100644
--- a/imap/md5.h
+++ b/imap/md5.h
@@ -26,15 +26,22 @@ documentation and/or software.
#ifndef MD5_H
#define MD5_H 1
+
/* POINTER defines a generic pointer type */
typedef unsigned char *POINTER;
+#include "types.h"
+
+#if 0
+
/* UINT2 defines a two byte word */
typedef unsigned short int UINT2;
/* UINT4 defines a four byte word */
typedef unsigned long int UINT4;
+#endif
+
/* MD5 context. */
typedef struct {
UINT4 state[4]; /* state (ABCD) */