summaryrefslogtreecommitdiffstats
path: root/src/if_python3.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
commit6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch)
treef2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/if_python3.c
parentf45d747ebf920940b041f5c75c2bfdffb6b670ae (diff)
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/if_python3.c')
-rw-r--r--src/if_python3.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/if_python3.c b/src/if_python3.c
index b87e13766e..75d2122741 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -709,8 +709,6 @@ python3_enabled(int verbose)
/* Load the standard Python exceptions - don't import the symbols from the
* DLL, as this can cause errors (importing data symbols is not reliable).
*/
-static void get_py3_exceptions(void);
-
static void
get_py3_exceptions(void)
{
@@ -788,8 +786,6 @@ static PyObject *ListGetattro(PyObject *, PyObject *);
static int ListSetattro(PyObject *, PyObject *, PyObject *);
static PyObject *FunctionGetattro(PyObject *, PyObject *);
-static PyObject *VimPathHook(PyObject *, PyObject *);
-
static struct PyModuleDef vimmodule;
#define PY_CAN_RECURSE