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

still in use, for Apple Mac OSX.
This commit is contained in:
Guido van Rossum 2000-11-13 19:45:45 +00:00
parent 6042741948
commit 128bcf4520
1 changed files with 1 additions and 1 deletions

View File

@ -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 */