diff options
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r-- | src/include/utils/elog.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 4a3bd026895..93b141d6839 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -147,6 +147,12 @@ errdetail(const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int +errdetail_internal(const char *fmt,...) +/* This extension allows gcc to check the format string for consistency with + the supplied arguments. */ +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); + +extern int errdetail_log(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ |