diff options
author | Peter Eisentraut | 2014-04-18 04:03:19 +0000 |
---|---|---|
committer | Peter Eisentraut | 2014-04-18 04:03:19 +0000 |
commit | e7128e8dbb305059c30ec085461297e619bcbff4 (patch) | |
tree | ed4bf968847b30a098d113bb787adc2b97c687e0 /contrib/ltree/ltree_gist.c | |
parent | 01563158235f5650743fd9b1dfa80c3d8faf89bb (diff) |
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
Because of gcc -Wmissing-prototypes, all functions in dynamically
loadable modules must have a separate prototype declaration. This is
meant to detect global functions that are not declared in header files,
but in cases where the function is called via dfmgr, this is redundant.
Besides filling up space with boilerplate, this is a frequent source of
compiler warnings in extension modules.
We can fix that by creating the function prototype as part of the
PG_FUNCTION_INFO_V1 macro, which such modules have to use anyway. That
makes the code of modules cleaner, because there is one less place where
the entry points have to be listed, and creates an additional check that
functions have the right prototype.
Remove now redundant prototypes from contrib and other modules.
Diffstat (limited to 'contrib/ltree/ltree_gist.c')
-rw-r--r-- | contrib/ltree/ltree_gist.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/contrib/ltree/ltree_gist.c b/contrib/ltree/ltree_gist.c index 5324c65f59e..2d89f1aed4c 100644 --- a/contrib/ltree/ltree_gist.c +++ b/contrib/ltree/ltree_gist.c @@ -13,10 +13,7 @@ #define NEXTVAL(x) ( (lquery*)( (char*)(x) + INTALIGN( VARSIZE(x) ) ) ) PG_FUNCTION_INFO_V1(ltree_gist_in); -Datum ltree_gist_in(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_gist_out); -Datum ltree_gist_out(PG_FUNCTION_ARGS); Datum ltree_gist_in(PG_FUNCTION_ARGS) @@ -37,25 +34,12 @@ ltree_gist_out(PG_FUNCTION_ARGS) } PG_FUNCTION_INFO_V1(ltree_compress); -Datum ltree_compress(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_decompress); -Datum ltree_decompress(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_same); -Datum ltree_same(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_union); -Datum ltree_union(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_penalty); -Datum ltree_penalty(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_picksplit); -Datum ltree_picksplit(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(ltree_consistent); -Datum ltree_consistent(PG_FUNCTION_ARGS); #define ISEQ(a,b) ( (a)->numlevel == (b)->numlevel && ltree_compare(a,b)==0 ) #define GETENTRY(vec,pos) ((ltree_gist *) DatumGetPointer((vec)->vector[(pos)].key)) |