aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-01-04 12:00:00 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-01-17 12:35:11 -0500
commit5d7c9c906a0b888dcfd3b0a2f2170e1f5ca366c4 (patch)
treefbcc458328c647717aed357e55e57be31854cfea
parent6181c34da882544c4842e7442189a7ea1dd03032 (diff)
downloadpostgresql-5d7c9c906a0b888dcfd3b0a2f2170e1f5ca366c4.tar.gz
postgresql-5d7c9c906a0b888dcfd3b0a2f2170e1f5ca366c4.zip
Remove unnecessary prototypes in loadable modules
Reviewed-by: Pavel Stehule <pavel.stehule@gmail.com>
-rw-r--r--contrib/intarray/_int_selfuncs.c8
-rw-r--r--contrib/sepgsql/sepgsql.h6
2 files changed, 0 insertions, 14 deletions
diff --git a/contrib/intarray/_int_selfuncs.c b/contrib/intarray/_int_selfuncs.c
index e17c0ecb11c..bdc8a8d0079 100644
--- a/contrib/intarray/_int_selfuncs.c
+++ b/contrib/intarray/_int_selfuncs.c
@@ -32,14 +32,6 @@ PG_FUNCTION_INFO_V1(_int_contains_joinsel);
PG_FUNCTION_INFO_V1(_int_contained_joinsel);
PG_FUNCTION_INFO_V1(_int_matchsel);
-Datum _int_overlap_sel(PG_FUNCTION_ARGS);
-Datum _int_contains_sel(PG_FUNCTION_ARGS);
-Datum _int_contained_sel(PG_FUNCTION_ARGS);
-Datum _int_overlap_joinsel(PG_FUNCTION_ARGS);
-Datum _int_contains_joinsel(PG_FUNCTION_ARGS);
-Datum _int_contained_joinsel(PG_FUNCTION_ARGS);
-Datum _int_matchsel(PG_FUNCTION_ARGS);
-
static Selectivity int_query_opr_selec(ITEM *item, Datum *values, float4 *freqs,
int nmncelems, float4 minfreq);
diff --git a/contrib/sepgsql/sepgsql.h b/contrib/sepgsql/sepgsql.h
index 06dd29dddd5..9d245c27801 100644
--- a/contrib/sepgsql/sepgsql.h
+++ b/contrib/sepgsql/sepgsql.h
@@ -276,12 +276,6 @@ extern char *sepgsql_get_label(Oid relOid, Oid objOid, int32 subId);
extern void sepgsql_object_relabel(const ObjectAddress *object,
const char *seclabel);
-extern Datum sepgsql_getcon(PG_FUNCTION_ARGS);
-extern Datum sepgsql_setcon(PG_FUNCTION_ARGS);
-extern Datum sepgsql_mcstrans_in(PG_FUNCTION_ARGS);
-extern Datum sepgsql_mcstrans_out(PG_FUNCTION_ARGS);
-extern Datum sepgsql_restorecon(PG_FUNCTION_ARGS);
-
/*
* dml.c
*/