summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/backup/basebackup_incremental.c4
-rw-r--r--src/backend/storage/file/fd.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/backup/basebackup_incremental.c b/src/backend/backup/basebackup_incremental.c
index a8691b680df..21087023973 100644
--- a/src/backend/backup/basebackup_incremental.c
+++ b/src/backend/backup/basebackup_incremental.c
@@ -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;
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c
index a7c05b0a6fd..3944321ff37 100644
--- a/src/backend/storage/file/fd.c
+++ b/src/backend/storage/file/fd.c
@@ -4020,7 +4020,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source)
return result;
}
-extern void
+void
assign_debug_io_direct(const char *newval, void *extra)
{
int *flags = (int *) extra;