summaryrefslogtreecommitdiff
path: root/contrib/jsonb_plpython/jsonb_plpython.c
diff options
context:
space:
mode:
authorAndres Freund2022-07-18 00:29:32 +0000
committerAndres Freund2022-07-18 00:29:32 +0000
commitfd4bad1655391582f639527c325fc4a99680cc64 (patch)
tree5e59a7fcf0bbe666e0d64532dc2fe57a0eade6b8 /contrib/jsonb_plpython/jsonb_plpython.c
parentf2b73c8d75d583adcdd3562adca335d31f430ac5 (diff)
Remove now superfluous declarations of dlsym()ed symbols.
The prior commit declared them centrally. Author: Andres Freund <[email protected]> Reviewed-By: Tom Lane <[email protected]> Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'contrib/jsonb_plpython/jsonb_plpython.c')
-rw-r--r--contrib/jsonb_plpython/jsonb_plpython.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/jsonb_plpython/jsonb_plpython.c b/contrib/jsonb_plpython/jsonb_plpython.c
index 03bbfa87d9..a625727c5e 100644
--- a/contrib/jsonb_plpython/jsonb_plpython.c
+++ b/contrib/jsonb_plpython/jsonb_plpython.c
@@ -9,8 +9,6 @@
PG_MODULE_MAGIC;
-void _PG_init(void);
-
/* for PLyObject_AsString in plpy_typeio.c */
typedef char *(*PLyObject_AsString_t) (PyObject *plrv);
static PLyObject_AsString_t PLyObject_AsString_p;