summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_testcapimodule.c2
-rw-r--r--Modules/getbuildinfo.c2
-rw-r--r--Modules/posixmodule.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index 6ff32b5..e8db847 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -25,7 +25,7 @@ raiseTestError(const char* test_name, const char* msg)
return NULL;
}
-/* Test #defines from config.h (particularly the SIZEOF_* defines).
+/* Test #defines from pyconfig.h (particularly the SIZEOF_* defines).
The ones derived from autoconf on the UNIX-like OSes can be relied
upon (in the absence of sloppy cross-compiling), but the Windows
diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c
index 8c710f8..a4e9977 100644
--- a/Modules/getbuildinfo.c
+++ b/Modules/getbuildinfo.c
@@ -1,4 +1,4 @@
-#include "config.h"
+#include "pyconfig.h"
#ifdef macintosh
#include "macbuildno.h"
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 8ff353f..0f4148b 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -46,7 +46,7 @@ corresponding Unix manual entries for more information on calls.";
#endif /* HAVE_UNISTD_H */
/* Various compilers have only certain posix functions */
-/* XXX Gosh I wish these were all moved into config.h */
+/* XXX Gosh I wish these were all moved into pyconfig.h */
#if defined(PYCC_VACPP) && defined(PYOS_OS2)
#include <process.h>
#else