From a6debecce5ddf1251f2430c159c7dc644748a30e Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 28 Sep 2000 02:54:51 +0000 Subject: 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 e6e7898..a2b8aec 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. */ -- cgit v0.12