From: Guido van Rossum Date: Wed, 29 May 2002 14:00:22 +0000 (+0000) Subject: Issue an explicit error when we can't find an appropriate type for X-Git-Tag: v2.3c1~5570 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e85ee8d815ed5fa3cbbc2770cd09bcbaf605182c;p=python Issue an explicit error when we can't find an appropriate type for UINT4. --- diff --git a/Modules/md5.h b/Modules/md5.h index 2b6d25b36e..13628dfbc3 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 ========== */