From a6debecce5ddf1251f2430c159c7dc644748a30e Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 28 Sep 2000 02:54:51 +0000 Subject: [PATCH] Fix includes; not including Python.h caused the module not to compile on some platforms. This *should* close SourceForge patch #115506. --- Modules/md5c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/md5c.c b/Modules/md5c.c index e6e7898eba74..a2b8aecd7b58 100644 --- a/Modules/md5c.c +++ b/Modules/md5c.c @@ -23,7 +23,7 @@ These notices must be retained in any copies of any part of this documentation and/or software. */ -#include "config.h" +#include "Python.h" #include "md5.h" /* Constants for MD5Transform routine. */ -- 2.47.3