diff options
author | Guido van Rossum <guido@python.org> | 1997-02-14 21:12:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-14 21:12:24 (GMT) |
commit | bae95189b0e391cfb57019e503ab9d553786691f (patch) | |
tree | 3cabd57c93d2086c290e9ed3c04fe0e5211f157b /Parser | |
parent | 129e91aa77b22db1637e9f6db9e081a4a0c9f2a1 (diff) | |
download | cpython-bae95189b0e391cfb57019e503ab9d553786691f.zip cpython-bae95189b0e391cfb57019e503ab9d553786691f.tar.gz cpython-bae95189b0e391cfb57019e503ab9d553786691f.tar.bz2 |
Added decl for Py_AddPendingCall and include mymalloc.h, all to keep
lint happy.
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/intrcheck.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 @@ 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 |