diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-11-06 11:06:58 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-11-06 11:11:52 +0100 |
commit | ecb5af779877ad3f84e60112ecf0b138e97b847c (patch) | |
tree | b671117a934a2ed223cac69da6510f390de533f3 /src/fe_utils | |
parent | ba08edb065459fca62191c020362022efd42b522 (diff) | |
download | postgresql-ecb5af779877ad3f84e60112ecf0b138e97b847c.tar.gz postgresql-ecb5af779877ad3f84e60112ecf0b138e97b847c.zip |
Remove unused #include's from bin .c files
as determined by IWYU
Similar to commit dbbca2cf299, but for bin and some related files.
Discussion: https://www.postgresql.org/message-id/flat/0df1d5b1-8ca8-4f84-93be-121081bde049%40eisentraut.org
Diffstat (limited to 'src/fe_utils')
-rw-r--r-- | src/fe_utils/astreamer_file.c | 1 | ||||
-rw-r--r-- | src/fe_utils/astreamer_gzip.c | 2 | ||||
-rw-r--r-- | src/fe_utils/astreamer_lz4.c | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/src/fe_utils/astreamer_file.c b/src/fe_utils/astreamer_file.c index c9a030853bc..47568da2dbb 100644 --- a/src/fe_utils/astreamer_file.c +++ b/src/fe_utils/astreamer_file.c @@ -19,7 +19,6 @@ #include "common/file_perm.h" #include "common/logging.h" -#include "common/string.h" #include "fe_utils/astreamer.h" typedef struct astreamer_plain_writer diff --git a/src/fe_utils/astreamer_gzip.c b/src/fe_utils/astreamer_gzip.c index ca5be6423a1..e0b755317cb 100644 --- a/src/fe_utils/astreamer_gzip.c +++ b/src/fe_utils/astreamer_gzip.c @@ -32,9 +32,7 @@ #include <zlib.h> #endif -#include "common/file_perm.h" #include "common/logging.h" -#include "common/string.h" #include "fe_utils/astreamer.h" #ifdef HAVE_LIBZ diff --git a/src/fe_utils/astreamer_lz4.c b/src/fe_utils/astreamer_lz4.c index 2bf14084e7f..a628088edfa 100644 --- a/src/fe_utils/astreamer_lz4.c +++ b/src/fe_utils/astreamer_lz4.c @@ -21,9 +21,7 @@ #include <lz4frame.h> #endif -#include "common/file_perm.h" #include "common/logging.h" -#include "common/string.h" #include "fe_utils/astreamer.h" #ifdef USE_LZ4 |