mirror of
https://github.com/postgres/postgres.git
synced 2025-07-24 14:22:24 +03:00
Remove useless extern keywords
An extern keyword on a function definition (not declaration) is useless and not the normal style. Discussion: https://www.postgresql.org/message-id/flat/e0a62134-83da-4ba4-8cdb-ceb0111c95ce@eisentraut.org
This commit is contained in:
@ -944,7 +944,7 @@ GetFileBackupMethod(IncrementalBackupInfo *ib, const char *path,
|
||||
* number of blocks. The header is rounded to a multiple of BLCKSZ, but
|
||||
* only if the file will store some block data.
|
||||
*/
|
||||
extern size_t
|
||||
size_t
|
||||
GetIncrementalHeaderSize(unsigned num_blocks_required)
|
||||
{
|
||||
size_t result;
|
||||
@ -972,7 +972,7 @@ GetIncrementalHeaderSize(unsigned num_blocks_required)
|
||||
/*
|
||||
* Compute the size for an incremental file containing a given number of blocks.
|
||||
*/
|
||||
extern size_t
|
||||
size_t
|
||||
GetIncrementalFileSize(unsigned num_blocks_required)
|
||||
{
|
||||
size_t result;
|
||||
|
Reference in New Issue
Block a user