Commit 128bcf45 authored by Guido van Rossum's avatar Guido van Rossum

Fix syntax error. Submitted by Bill Bumgarner. Apparently this is

still in use, for Apple Mac OSX.
parent 60427419
......@@ -15,7 +15,7 @@ PyThread__init_thread(void)
* 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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment