Fix syntax error.  Submitted by Bill Bumgarner.  Apparently this is
still in use, for Apple Mac OSX.
diff --git a/Python/thread_cthread.h b/Python/thread_cthread.h
index 07bd190..0805051 100644
--- a/Python/thread_cthread.h
+++ b/Python/thread_cthread.h
@@ -15,7 +15,7 @@
  * Thread support.
  */
 int
-PyThread_start_new_thread(func, void (*func)(void *), void *arg)
+PyThread_start_new_thread(void (*func)(void *), void *arg)
 {
 	int success = 0;	/* init not needed when SOLARIS_THREADS and */
 				/* C_THREADS implemented properly */