diff options
Diffstat (limited to 'Parser/intrcheck.c')
-rw-r--r-- | Parser/intrcheck.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c index a17041d..1b81646 100644 --- a/Parser/intrcheck.c +++ b/Parser/intrcheck.c @@ -18,11 +18,10 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #endif #include "myproto.h" -#include "mymalloc.h" /* For ANY */ #include "intrcheck.h" /* Copied here from ceval.h -- can't include that file. */ -int Py_AddPendingCall(int (*func)(ANY *), ANY *arg); +int Py_AddPendingCall(int (*func)(void *), void *arg); #ifdef QUICKWIN |