Kaydet (Commit) 128bcf45 authored tarafından 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.
üst 60427419
...@@ -15,7 +15,7 @@ PyThread__init_thread(void) ...@@ -15,7 +15,7 @@ PyThread__init_thread(void)
* Thread support. * Thread support.
*/ */
int 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 */ int success = 0; /* init not needed when SOLARIS_THREADS and */
/* C_THREADS implemented properly */ /* 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