Commit e85ee8d8 authored by Guido van Rossum's avatar Guido van Rossum

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

UINT4.
parent 41644392
......@@ -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 ========== */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment