diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-04-18 00:03:19 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-04-18 00:03:19 -0400 |
commit | e7128e8dbb305059c30ec085461297e619bcbff4 (patch) | |
tree | ed4bf968847b30a098d113bb787adc2b97c687e0 /contrib/test_shm_mq/test.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/test_shm_mq/test.c')
-rw-r--r-- | contrib/test_shm_mq/test.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/test_shm_mq/test.c b/contrib/test_shm_mq/test.c index 5ff1e9a63f3..1832e1d1dba 100644 --- a/contrib/test_shm_mq/test.c +++ b/contrib/test_shm_mq/test.c @@ -23,8 +23,6 @@ PG_FUNCTION_INFO_V1(test_shm_mq); PG_FUNCTION_INFO_V1(test_shm_mq_pipelined); void _PG_init(void); -Datum test_shm_mq(PG_FUNCTION_ARGS); -Datum test_shm_mq_pipelined(PG_FUNCTION_ARGS); static void verify_message(Size origlen, char *origdata, Size newlen, char *newdata); |