diff options
author | Tom Lane | 2018-02-19 17:07:44 +0000 |
---|---|---|
committer | Tom Lane | 2018-02-19 17:07:44 +0000 |
commit | 524d64ea8e3e49b4fda41ff9b2f048b697384058 (patch) | |
tree | d6b40bcebf91ebdad805aac2fd91ea001e04e495 /src/backend/catalog/partition.c | |
parent | 8c44802b6ed4846accb08e2ffe93040b8b42aae9 (diff) |
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
Diffstat (limited to 'src/backend/catalog/partition.c')
-rw-r--r-- | src/backend/catalog/partition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/partition.c b/src/backend/catalog/partition.c index 4dddfcc0142..b1c7cd6c723 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -856,7 +856,7 @@ partition_bounds_equal(int partnatts, int16 *parttyplen, bool *parttypbyval, * Return a copy of given PartitionBoundInfo structure. The data types of bounds * are described by given partition key specification. */ -extern PartitionBoundInfo +PartitionBoundInfo partition_bounds_copy(PartitionBoundInfo src, PartitionKey key) { |