From e85ee8d815ed5fa3cbbc2770cd09bcbaf605182c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 29 May 2002 14:00:22 +0000 Subject: Issue an explicit error when we can't find an appropriate type for UINT4. --- Modules/md5.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/md5.h b/Modules/md5.h index 2b6d25b..13628df 100644 --- a/Modules/md5.h +++ b/Modules/md5.h @@ -37,6 +37,8 @@ typedef unsigned long int UINT4; typedef unsigned short int UINT4; #elif INT_MAX == 2147483647 typedef unsigned int UINT4; +#else +#error "Can't find a 4-byte integral type" #endif /* ========== End global.h; continue md5.h ========== */ -- cgit v0.12