diff options
Diffstat (limited to 'Include/pythread.h')
-rw-r--r-- | Include/pythread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pythread.h b/Include/pythread.h index c0a718e..514cdea 100644 --- a/Include/pythread.h +++ b/Include/pythread.h @@ -13,7 +13,7 @@ extern "C" { #endif DL_IMPORT(void) PyThread_init_thread(void); -DL_IMPORT(int) PyThread_start_new_thread(void (*)(void *), void *); +DL_IMPORT(long) PyThread_start_new_thread(void (*)(void *), void *); DL_IMPORT(void) PyThread_exit_thread(void); DL_IMPORT(void) PyThread__PyThread_exit_thread(void); DL_IMPORT(long) PyThread_get_thread_ident(void); |