diff options
author | Andres Freund <andres@anarazel.de> | 2022-07-17 17:29:32 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-07-17 17:29:32 -0700 |
commit | fd4bad1655391582f639527c325fc4a99680cc64 (patch) | |
tree | 5e59a7fcf0bbe666e0d64532dc2fe57a0eade6b8 /contrib/basebackup_to_shell/basebackup_to_shell.c | |
parent | f2b73c8d75d583adcdd3562adca335d31f430ac5 (diff) | |
download | postgresql-fd4bad1655391582f639527c325fc4a99680cc64.tar.gz postgresql-fd4bad1655391582f639527c325fc4a99680cc64.zip |
Remove now superfluous declarations of dlsym()ed symbols.
The prior commit declared them centrally.
Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/20211101020311.av6hphdl6xbjbuif@alap3.anarazel.de
Diffstat (limited to 'contrib/basebackup_to_shell/basebackup_to_shell.c')
-rw-r--r-- | contrib/basebackup_to_shell/basebackup_to_shell.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/basebackup_to_shell/basebackup_to_shell.c b/contrib/basebackup_to_shell/basebackup_to_shell.c index bc754b177af..34188f2d9d3 100644 --- a/contrib/basebackup_to_shell/basebackup_to_shell.c +++ b/contrib/basebackup_to_shell/basebackup_to_shell.c @@ -37,8 +37,6 @@ typedef struct bbsink_shell FILE *pipe; } bbsink_shell; -void _PG_init(void); - static void *shell_check_detail(char *target, char *target_detail); static bbsink *shell_get_sink(bbsink *next_sink, void *detail_arg); |