pgsql: Remove bogus "extern" annotations on function definitions.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove bogus "extern" annotations on function definitions.
Date: 2018-02-19 17:07:49
Message-ID: E1enour-0005C7-CI@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/524d64ea8e3e49b4fda41ff9b2f048b697384058

Modified Files
--------------
contrib/postgres_fdw/deparse.c | 4 ++--
contrib/postgres_fdw/postgres_fdw.c | 2 +-
src/backend/catalog/index.c | 6 +++---
src/backend/catalog/partition.c | 2 +-
src/backend/foreign/foreign.c | 2 +-
src/backend/storage/ipc/shm_toc.c | 6 +++---
src/backend/utils/adt/json.c | 8 ++++----
7 files changed, 15 insertions(+), 15 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2018-02-19 20:40:27 pgsql: Allow UNIQUE indexes on partitioned tables
Previous Message Tom Lane 2018-02-19 04:33:15 pgsql: Remove redundant initialization of a local variable.