1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-05 23:56:58 +03:00

Remove function declarations from headers for some undefined functions

The functions whose declarations are removed here have been removed in
the past, but their respective headers forgot the call.

Author: Justin Pryzby
Discussion: https://postgr.es/m/20230110045722.GD9837@telsasoft.com
This commit is contained in:
Michael Paquier 2023-01-11 11:54:55 +09:00
parent 3c6fc58209
commit 69fb29d1af
3 changed files with 0 additions and 6 deletions

View File

@ -54,8 +54,6 @@ typedef struct cfp cfp;
extern cfp *cfopen(const char *path, const char *mode, extern cfp *cfopen(const char *path, const char *mode,
const pg_compress_specification compression_spec); const pg_compress_specification compression_spec);
extern cfp *cfdopen(int fd, const char *mode,
pg_compress_specification compression_spec);
extern cfp *cfopen_read(const char *path, const char *mode); extern cfp *cfopen_read(const char *path, const char *mode);
extern cfp *cfopen_write(const char *path, const char *mode, extern cfp *cfopen_write(const char *path, const char *mode,
const pg_compress_specification compression_spec); const pg_compress_specification compression_spec);

View File

@ -549,8 +549,6 @@ extern void gistSplitByKey(Relation r, Page page, IndexTuple *itup,
/* gistbuild.c */ /* gistbuild.c */
extern IndexBuildResult *gistbuild(Relation heap, Relation index, extern IndexBuildResult *gistbuild(Relation heap, Relation index,
struct IndexInfo *indexInfo); struct IndexInfo *indexInfo);
extern void gistValidateBufferingOption(const char *value);
/* gistbuildbuffers.c */ /* gistbuildbuffers.c */
extern GISTBuildBuffers *gistInitBuildBuffers(int pagesPerBuffer, int levelStep, extern GISTBuildBuffers *gistInitBuildBuffers(int pagesPerBuffer, int levelStep,
int maxLevel); int maxLevel);

View File

@ -332,8 +332,6 @@ extern XLogReaderState *XLogReaderAllocate(int wal_segment_size,
const char *waldir, const char *waldir,
XLogReaderRoutine *routine, XLogReaderRoutine *routine,
void *private_data); void *private_data);
extern XLogReaderRoutine *LocalXLogReaderRoutine(void);
/* Free an XLogReader */ /* Free an XLogReader */
extern void XLogReaderFree(XLogReaderState *state); extern void XLogReaderFree(XLogReaderState *state);