diff options
Diffstat (limited to 'Python/thread_lwp.h')
-rw-r--r-- | Python/thread_lwp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_lwp.h b/Python/thread_lwp.h index 671387c..8858e91 100644 --- a/Python/thread_lwp.h +++ b/Python/thread_lwp.h @@ -106,7 +106,7 @@ void PyThread__exit_prog(int status) PyThread_type_lock PyThread_allocate_lock(void) { struct lock *lock; - extern char *malloc(); + extern char *malloc(size_t); dprintf(("PyThread_allocate_lock called\n")); if (!initialized) |