mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
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.
This commit is contained in:
@ -19,16 +19,6 @@ PG_MODULE_MAGIC;
|
||||
*/
|
||||
|
||||
static int32 citextcmp(text *left, text *right, Oid collid);
|
||||
extern Datum citext_cmp(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_hash(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_eq(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_ne(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_gt(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_ge(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_lt(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_le(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_smaller(PG_FUNCTION_ARGS);
|
||||
extern Datum citext_larger(PG_FUNCTION_ARGS);
|
||||
|
||||
/*
|
||||
* =================
|
||||
|
Reference in New Issue
Block a user