diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-28 02:54:51 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-28 02:54:51 (GMT) |
commit | a6debecce5ddf1251f2430c159c7dc644748a30e (patch) | |
tree | 6aa7bc82065b2c0cbeb9c188c744a1b71dc6b558 /Modules/md5c.c | |
parent | 33dde92ecfa4e2afe883a9cd4630ed83839bb26b (diff) | |
download | cpython-a6debecce5ddf1251f2430c159c7dc644748a30e.zip cpython-a6debecce5ddf1251f2430c159c7dc644748a30e.tar.gz cpython-a6debecce5ddf1251f2430c159c7dc644748a30e.tar.bz2 |
Fix includes; not including Python.h caused the module not to compile on
some platforms.
This *should* close SourceForge patch #115506.
Diffstat (limited to 'Modules/md5c.c')
-rw-r--r-- | Modules/md5c.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |