summaryrefslogtreecommitdiffstats
path: root/Modules/md5.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-05-29 14:00:22 (GMT)
committerGuido van Rossum <guido@python.org>2002-05-29 14:00:22 (GMT)
commite85ee8d815ed5fa3cbbc2770cd09bcbaf605182c (patch)
treee0d4fdf4070ca548c9aff6771d9586a9cdb5a1d5 /Modules/md5.h
parent41644392407eadb07dd09a08e5d316c4edf3fcbb (diff)
downloadcpython-e85ee8d815ed5fa3cbbc2770cd09bcbaf605182c.zip
cpython-e85ee8d815ed5fa3cbbc2770cd09bcbaf605182c.tar.gz
cpython-e85ee8d815ed5fa3cbbc2770cd09bcbaf605182c.tar.bz2
Issue an explicit error when we can't find an appropriate type for
UINT4.
Diffstat (limited to 'Modules/md5.h')
-rw-r--r--Modules/md5.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/md5.h b/Modules/md5.h
index 2b6d25b..13628df 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 ========== */