diff options
Diffstat (limited to 'Parser/intrcheck.c')
-rw-r--r-- | Parser/intrcheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c index 3d4a27f..5278d76 100644 --- a/Parser/intrcheck.c +++ b/Parser/intrcheck.c @@ -22,7 +22,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #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)); +int Py_AddPendingCall(int (*func)(ANY *), ANY *arg); #ifdef QUICKWIN @@ -152,7 +152,7 @@ intcatcher(sig) int sig; /* Not used by required by interface */ #endif /* _M_IX86 */ { - extern void Py_Exit Py_PROTO((int)); + extern void Py_Exit(int); static char message[] = "python: to interrupt a truly hanging Python program, interrupt once more.\n"; switch (interrupted++) { |