diff options
| author | John Naylor | 2022-08-16 05:01:41 +0000 |
|---|---|---|
| committer | John Naylor | 2022-09-04 03:45:56 +0000 |
| commit | 80e8450a744b1f6fa75663f37f1db3388995dc67 (patch) | |
| tree | 7dc1d279ee049d49b688e00b80e10fdf3c2a2bfb /src/include | |
| parent | 1b188ea7921a7d4f6cc569541e32c980d2221f9d (diff) | |
Move private declarations shared between guc.c and guc-file.l to new header
Further preparatory refactoring for compiling guc-file.c standalone.
Reviewed by Andres Freund
Discussion: https://www.postgresql.org/message-id/20220810171935.7k5zgnjwqzalzmtm%40awork3.anarazel.de
Discussion: https://www.postgresql.org/message-id/CAFBsxsF8Gc2StS3haXofshHCzqNMRXiSxvQEYGwnFsTmsdwNeg@mail.gmail.com
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/utils/guc.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index aae071cd825..45ae1b537f3 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -442,16 +442,6 @@ extern void GUC_check_errcode(int sqlerrcode); pre_format_elog_string(errno, TEXTDOMAIN), \ GUC_check_errhint_string = format_elog_string -/* functions shared between guc.c and guc-file.l */ -extern int guc_name_compare(const char *namea, const char *nameb); -extern ConfigVariable *ProcessConfigFileInternal(GucContext context, - bool applySettings, int elevel); -extern void record_config_file_error(const char *errmsg, - const char *config_file, - int lineno, - ConfigVariable **head_p, - ConfigVariable **tail_p); - /* * The following functions are not in guc.c, but are declared here to avoid * having to include guc.h in some widely used headers that it really doesn't |
