[Python-checkins] python/dist/src/Modules md5.h,2.8,2.9
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
2002年5月29日 07:00:24 -0700
Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv32025
Modified Files:
md5.h
Log Message:
Issue an explicit error when we can't find an appropriate type for
UINT4.
Index: md5.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/md5.h,v
retrieving revision 2.8
retrieving revision 2.9
diff -C2 -d -r2.8 -r2.9
*** md5.h 29 May 2002 10:32:24 -0000 2.8
--- md5.h 29 May 2002 14:00:22 -0000 2.9
***************
*** 38,41 ****
--- 38,43 ----
#elif INT_MAX == 2147483647
typedef unsigned int UINT4;
+ #else
+ #error "Can't find a 4-byte integral type"
#endif