diff options
-rw-r--r-- | Python/thread_cthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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 */ |