Kaydet (Commit) 2d693588 authored tarafından Thomas Heller's avatar Thomas Heller

Remove duplicated function declaration.

Make _pagesize static.
üst 4954ffd9
...@@ -351,7 +351,6 @@ struct tagPyCArgObject { ...@@ -351,7 +351,6 @@ struct tagPyCArgObject {
}; };
extern PyTypeObject PyCArg_Type; extern PyTypeObject PyCArg_Type;
extern PyCArgObject *new_CArgObject(void);
#define PyCArg_CheckExact(v) ((v)->ob_type == &PyCArg_Type) #define PyCArg_CheckExact(v) ((v)->ob_type == &PyCArg_Type)
extern PyCArgObject *new_CArgObject(void); extern PyCArgObject *new_CArgObject(void);
......
...@@ -32,7 +32,7 @@ typedef union _tagITEM { ...@@ -32,7 +32,7 @@ typedef union _tagITEM {
} ITEM; } ITEM;
static ITEM *free_list; static ITEM *free_list;
int _pagesize; static int _pagesize;
static void more_core(void) static void more_core(void)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment