mirror of
https://github.com/python/cpython.git
synced 2025-11-04 19:59:30 +00:00
Issue an explicit error when we can't find an appropriate type for
UINT4.
This commit is contained in:
parent
4164439240
commit
e85ee8d815
1 changed files with 2 additions and 0 deletions
|
|
@ -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 ========== */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue