Issue an explicit error when we can't find an appropriate type for

UINT4.
This commit is contained in:
Guido van Rossum 2002-05-29 14:00:22 +00:00
parent 4164439240
commit e85ee8d815

View file

@ -37,6 +37,8 @@ typedef unsigned long int UINT4;
typedef unsigned short int UINT4; typedef unsigned short int UINT4;
#elif INT_MAX == 2147483647 #elif INT_MAX == 2147483647
typedef unsigned int UINT4; typedef unsigned int UINT4;
#else
#error "Can't find a 4-byte integral type"
#endif #endif
/* ========== End global.h; continue md5.h ========== */ /* ========== End global.h; continue md5.h ========== */