diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-26 13:41:06 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-26 13:41:06 (GMT) |
commit | 4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f (patch) | |
tree | 06e19685ad77879ee4df995bf669235489786995 /Python | |
parent | 4eb5940a4d350d250ab4af08a8b5b6e553e1814d (diff) | |
download | cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.zip cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.gz cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.bz2 |
Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/atof.c | 2 | ||||
-rw-r--r-- | Python/fmod.c | 2 | ||||
-rw-r--r-- | Python/getmtime.c | 2 | ||||
-rw-r--r-- | Python/hypot.c | 2 | ||||
-rw-r--r-- | Python/pyfpe.c | 2 | ||||
-rw-r--r-- | Python/strtod.c | 2 | ||||
-rw-r--r-- | Python/thread.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/Python/atof.c b/Python/atof.c index ae690e1..8fbde38 100644 --- a/Python/atof.c +++ b/Python/atof.c @@ -4,7 +4,7 @@ and is slow and inaccurate. But it's good enough for the occasional string literal... */ -#include "config.h" +#include "pyconfig.h" #include <ctype.h> diff --git a/Python/fmod.c b/Python/fmod.c index de88f83..919c6cc 100644 --- a/Python/fmod.c +++ b/Python/fmod.c @@ -1,7 +1,7 @@ /* Portable fmod(x, y) implementation for systems that don't have it */ -#include "config.h" +#include "pyconfig.h" #include "pyport.h" #include <errno.h> diff --git a/Python/getmtime.c b/Python/getmtime.c index c77782d..f0ac899 100644 --- a/Python/getmtime.c +++ b/Python/getmtime.c @@ -4,7 +4,7 @@ /* (A separate file because this may be OS dependent) */ #include "Python.h" -#include "config.h" +#include "pyconfig.h" time_t PyOS_GetLastModificationTime(char *path, FILE *fp) diff --git a/Python/hypot.c b/Python/hypot.c index 939dedd..755d0c3 100644 --- a/Python/hypot.c +++ b/Python/hypot.c @@ -1,6 +1,6 @@ /* hypot() replacement */ -#include "config.h" +#include "pyconfig.h" #include "pyport.h" double hypot(double x, double y) diff --git a/Python/pyfpe.c b/Python/pyfpe.c index 77f2dea..4b7f5ba 100644 --- a/Python/pyfpe.c +++ b/Python/pyfpe.c @@ -1,4 +1,4 @@ -#include "config.h" +#include "pyconfig.h" #include "pyfpe.h" /* * The signal handler for SIGFPE is actually declared in an external diff --git a/Python/strtod.c b/Python/strtod.c index c6a1dbd..7911a94 100644 --- a/Python/strtod.c +++ b/Python/strtod.c @@ -1,4 +1,4 @@ -#include "config.h" +#include "pyconfig.h" /* comp.sources.misc strtod(), as posted in comp.lang.tcl, with bugfix for "123000.0" and acceptance of space after 'e' sign nuked. diff --git a/Python/thread.c b/Python/thread.c index b5d99ef..0b0316a 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -5,7 +5,7 @@ which is included by this file dependent on config settings. Stuff shared by all thread_*.h files is collected here. */ -#include "config.h" +#include "pyconfig.h" /* config.h may or may not define DL_IMPORT */ #ifndef DL_IMPORT /* declarations for DLL import/export */ |