diff options
Diffstat (limited to 'src/include/port.h')
-rw-r--r-- | src/include/port.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/port.h b/src/include/port.h index 323df8f9ede..2c25498add5 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -519,4 +519,12 @@ extern char *wait_result_to_str(int exit_status); extern bool wait_result_is_signal(int exit_status, int signum); extern bool wait_result_is_any_signal(int exit_status, bool include_command_not_found); +/* + * Interfaces that we assume all Unix system have. We retain individual macros + * for better documentation. + */ +#ifndef WIN32 +#define HAVE_GETRLIMIT 1 +#endif + #endif /* PG_PORT_H */ |