Skip to content

Commit

Permalink
Add functions' prototypes for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dnskvlnk committed Oct 22, 2024
1 parent f075158 commit 5bf45a5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/backend/storage/file/buffile.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ static void BufFileDumpCompressedBuffer(BufFile *file, const void *buffer, Size
static void BufFileEndCompression(BufFile *file);
static int BufFileLoadCompressedBuffer(BufFile *file, void *buffer, size_t bufsize);

#ifdef HAVE_LIBZSTD
static void *customAlloc(void *opaque, size_t size);
static void customFree(void *opaque, void *address);
#endif


/*
* Create a BufFile given the first underlying physical file.
Expand Down

0 comments on commit 5bf45a5

Please sign in to comment.