Added decl for Py_AddPendingCall and include mymalloc.h, all to keep
lint happy.
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c
index 92fab1c..40f335e 100644
--- a/Parser/intrcheck.c
+++ b/Parser/intrcheck.c
@@ -33,8 +33,12 @@
 
 #include "config.h"
 #include "myproto.h"
+#include "mymalloc.h" /* For ANY */
 #include "intrcheck.h"
 
+/* Copied here from ceval.h -- can't include that file. */
+int Py_AddPendingCall Py_PROTO((int (*func) Py_PROTO((ANY *)), ANY *arg));
+
 
 #ifdef QUICKWIN