From 33cb75c83198f228451e9a235f17254922ea5a1d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 4 Sep 1997 02:56:23 +0000 Subject: Portability hack for alphas. svn path=/trunk/; revision=1297 --- md5global.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'md5global.h') 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 -- cgit v1.2.3