From: Guido van Rossum Date: Fri, 14 Feb 1997 21:12:24 +0000 (+0000) Subject: Added decl for Py_AddPendingCall and include mymalloc.h, all to keep X-Git-Tag: v1.5a1~362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bae95189b0e391cfb57019e503ab9d553786691f;p=thirdparty%2FPython%2Fcpython.git 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 92fab1c3103d..40f335eef267 100644 --- a/Parser/intrcheck.c +++ b/Parser/intrcheck.c @@ -33,8 +33,12 @@ PERFORMANCE OF THIS SOFTWARE. #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