• Peter Eisentraut's avatar
    Create function prototype as part of PG_FUNCTION_INFO_V1 macro · e7128e8d
    Peter Eisentraut authored
    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.
    e7128e8d
btree_time.c 8.02 KB