summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorMichael Paquier2023-01-11 02:54:55 +0000
committerMichael Paquier2023-01-11 02:54:55 +0000
commit69fb29d1affb525d4c91b4dc5b104a551e61c28d (patch)
treee62847c4110a8d9d47c724cddf6328f64a8d0ce7 /src/bin
parent3c6fc58209f24b959ee18f5d19ef96403d08f15c (diff)
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
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/pg_dump/compress_io.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/pg_dump/compress_io.h b/src/bin/pg_dump/compress_io.h
index c04773a4006..a429dc4789d 100644
--- a/src/bin/pg_dump/compress_io.h
+++ b/src/bin/pg_dump/compress_io.h
@@ -54,8 +54,6 @@ typedef struct cfp cfp;
extern cfp *cfopen(const char *path, const char *mode,
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_write(const char *path, const char *mode,
const pg_compress_specification compression_spec);