mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Use 'void' directly instead of the ANY #define, now that all code is ANSI C.
Leave the actual #define in for API compatibility.
This commit is contained in:
parent
bf680266da
commit
334fb8985b
11 changed files with 44 additions and 63 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue