mirror of https://github.com/python/cpython
Remove duplicated function declaration.
Make _pagesize static.
This commit is contained in:
parent
4954ffd98d
commit
2d69358802
|
@ -351,7 +351,6 @@ struct tagPyCArgObject {
|
|||
};
|
||||
|
||||
extern PyTypeObject PyCArg_Type;
|
||||
extern PyCArgObject *new_CArgObject(void);
|
||||
#define PyCArg_CheckExact(v) ((v)->ob_type == &PyCArg_Type)
|
||||
extern PyCArgObject *new_CArgObject(void);
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ typedef union _tagITEM {
|
|||
} ITEM;
|
||||
|
||||
static ITEM *free_list;
|
||||
int _pagesize;
|
||||
static int _pagesize;
|
||||
|
||||
static void more_core(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue