diff options
Diffstat (limited to 'src/include/port.h')
-rw-r--r-- | src/include/port.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/port.h b/src/include/port.h index d0aebe19583..a3e1dac66cc 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -202,6 +202,9 @@ extern char *pgwin32_setlocale(int category, const char *locale); #define setlocale(a,b) pgwin32_setlocale(a,b) #endif /* WIN32 */ +/* Wrap strsignal(), or provide our own version if necessary */ +extern const char *pg_strsignal(int signum); + /* Portable prompt handling */ extern char *simple_prompt(const char *prompt, int maxlen, bool echo); |