mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Fix syntax error. Submitted by Bill Bumgarner. Apparently this is
still in use, for Apple Mac OSX.
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user