Renamed thread.h to pythread.h.
diff --git a/Python/ceval.c b/Python/ceval.c
index 0178f84..b004c79 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -109,7 +109,7 @@
 #ifdef WITH_THREAD
 
 #include <errno.h>
-#include "thread.h"
+#include "pythread.h"
 
 extern int _PyThread_Started; /* Flag for Py_Exit */
 
diff --git a/Python/import.c b/Python/import.c
index c8bbc29..32dc319 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -119,7 +119,7 @@
 
 #ifdef WITH_THREAD
 
-#include "thread.h"
+#include "pythread.h"
 
 static type_lock import_lock = 0;
 static long import_lock_thread = -1;
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2be073b..7cff848 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1031,7 +1031,7 @@
 /* Clean up and exit */
 
 #ifdef WITH_THREAD
-#include "thread.h"
+#include "pythread.h"
 int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */
 #endif
 
diff --git a/Python/thread.c b/Python/thread.c
index 9da701d..ff5aefe 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -59,7 +59,7 @@
 #endif
 #endif
 
-#include "thread.h"
+#include "pythread.h"
 
 #ifdef __ksr__
 #define _POSIX_THREADS