diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-04 02:56:23 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-04 02:56:23 +0000 |
commit | 33cb75c83198f228451e9a235f17254922ea5a1d (patch) | |
tree | 0df636840cd3fbdf13446185a3ad34443cc9aac2 /md5global.h | |
parent | dc17a07580210065a61ed62a73d0a0f53df36723 (diff) | |
download | fetchmail-33cb75c83198f228451e9a235f17254922ea5a1d.tar.gz fetchmail-33cb75c83198f228451e9a235f17254922ea5a1d.tar.bz2 fetchmail-33cb75c83198f228451e9a235f17254922ea5a1d.zip |
Portability hack for alphas.
svn path=/trunk/; revision=1297
Diffstat (limited to 'md5global.h')
-rw-r--r-- | md5global.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/md5global.h b/md5global.h index de2f91d4..14f6e44b 100644 --- a/md5global.h +++ b/md5global.h @@ -22,7 +22,11 @@ typedef unsigned char *POINTER; typedef unsigned short int UINT2; /* UINT4 defines a four byte word */ +#if SIZEOF_INT == 4 +typedef unsigned int UINT4; +#else typedef unsigned long int UINT4; +#endif /* PROTO_LIST is defined depending on how PROTOTYPES is defined above. If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it |