From e7128e8dbb305059c30ec085461297e619bcbff4 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 18 Apr 2014 00:03:19 -0400 Subject: 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. --- contrib/test_parser/test_parser.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'contrib/test_parser/test_parser.c') diff --git a/contrib/test_parser/test_parser.c b/contrib/test_parser/test_parser.c index 932d9248a38..c41d1eb201c 100644 --- a/contrib/test_parser/test_parser.c +++ b/contrib/test_parser/test_parser.c @@ -38,23 +38,13 @@ typedef struct } LexDescr; /* - * prototypes + * functions */ PG_FUNCTION_INFO_V1(testprs_start); -Datum testprs_start(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(testprs_getlexeme); -Datum testprs_getlexeme(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(testprs_end); -Datum testprs_end(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(testprs_lextype); -Datum testprs_lextype(PG_FUNCTION_ARGS); -/* - * functions - */ Datum testprs_start(PG_FUNCTION_ARGS) { -- cgit v1.2.3