summaryrefslogtreecommitdiff
path: root/Modules/_ctypes/ctypes.h
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2009-04-16 18:37:24 +0000
committerThomas Heller <theller@ctypes.org>2009-04-16 18:37:24 +0000
commit67a4bf3aed0773ea2541b0eea0f6fba096006187 (patch)
treedd0cf8874997c2fafc74cc67622675f2d826aa85 /Modules/_ctypes/ctypes.h
parent12815cc553c3d13b675471f826cd8c34a54a28ee (diff)
downloadcpython-67a4bf3aed0773ea2541b0eea0f6fba096006187.tar.gz
Merged revisions 71640-71641 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71640 | thomas.heller | 2009-04-16 08:26:33 +0200 (Do, 16 Apr 2009) | 1 line Remove unneeded code. ........ r71641 | thomas.heller | 2009-04-16 08:42:02 +0200 (Do, 16 Apr 2009) | 2 lines Remove duplicated function declaration. Make _pagesize static. ........
Diffstat (limited to 'Modules/_ctypes/ctypes.h')
-rw-r--r--Modules/_ctypes/ctypes.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h
index 7bbe439bf8..acd94f4b3c 100644
--- a/Modules/_ctypes/ctypes.h
+++ b/Modules/_ctypes/ctypes.h
@@ -148,8 +148,6 @@ extern PyTypeObject StructType_Type;
extern PyObject *
CreateArrayType(PyObject *itemtype, Py_ssize_t length);
-extern void init_callbacks_in_module(PyObject *m);
-
extern PyMethodDef module_methods[];
extern CThunkObject *AllocFunctionCallback(PyObject *callable,
@@ -312,7 +310,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);