From 524d64ea8e3e49b4fda41ff9b2f048b697384058 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 19 Feb 2018 12:07:44 -0500 Subject: Remove bogus "extern" annotations on function definitions. While this is not illegal C, project style is to put "extern" only on declarations not definitions. David Rowley Discussion: https://postgr.es/m/CAKJS1f9RKLWXcMBQhvDYhmsMEo+ALuNgA-NE+AX5Uoke9DJ2Xg@mail.gmail.com --- contrib/postgres_fdw/postgres_fdw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/postgres_fdw/postgres_fdw.c') diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index d37180ae10b..941a2e75a53 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -5567,7 +5567,7 @@ conversion_error_callback(void *arg) * Find an equivalence class member expression, all of whose Vars, come from * the indicated relation. */ -extern Expr * +Expr * find_em_expr_for_rel(EquivalenceClass *ec, RelOptInfo *rel) { ListCell *lc_em; -- cgit v1.2.3