diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-02-19 12:07:44 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-02-19 12:07:44 -0500 |
commit | 524d64ea8e3e49b4fda41ff9b2f048b697384058 (patch) | |
tree | d6b40bcebf91ebdad805aac2fd91ea001e04e495 /src/backend/utils/adt/json.c | |
parent | 8c44802b6ed4846accb08e2ffe93040b8b42aae9 (diff) | |
download | postgresql-524d64ea8e3e49b4fda41ff9b2f048b697384058.tar.gz postgresql-524d64ea8e3e49b4fda41ff9b2f048b697384058.zip |
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/utils/adt/json.c')
-rw-r--r-- | src/backend/utils/adt/json.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/adt/json.c b/src/backend/utils/adt/json.c index 3ba9bb35191..6f0fe94d63f 100644 --- a/src/backend/utils/adt/json.c +++ b/src/backend/utils/adt/json.c @@ -1843,7 +1843,7 @@ add_json(Datum val, bool is_null, StringInfo result, /* * SQL function array_to_json(row) */ -extern Datum +Datum array_to_json(PG_FUNCTION_ARGS) { Datum array = PG_GETARG_DATUM(0); @@ -1859,7 +1859,7 @@ array_to_json(PG_FUNCTION_ARGS) /* * SQL function array_to_json(row, prettybool) */ -extern Datum +Datum array_to_json_pretty(PG_FUNCTION_ARGS) { Datum array = PG_GETARG_DATUM(0); @@ -1876,7 +1876,7 @@ array_to_json_pretty(PG_FUNCTION_ARGS) /* * SQL function row_to_json(row) */ -extern Datum +Datum row_to_json(PG_FUNCTION_ARGS) { Datum array = PG_GETARG_DATUM(0); @@ -1892,7 +1892,7 @@ row_to_json(PG_FUNCTION_ARGS) /* * SQL function row_to_json(row, prettybool) */ -extern Datum +Datum row_to_json_pretty(PG_FUNCTION_ARGS) { Datum array = PG_GETARG_DATUM(0); |