diff options
Diffstat (limited to 'contrib/pg_upgrade/pg_upgrade.h')
-rw-r--r-- | contrib/pg_upgrade/pg_upgrade.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/pg_upgrade.h b/contrib/pg_upgrade/pg_upgrade.h index 3274227a0a3..4f74c217eed 100644 --- a/contrib/pg_upgrade/pg_upgrade.h +++ b/contrib/pg_upgrade/pg_upgrade.h @@ -429,7 +429,8 @@ prep_status(const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); void check_ok(void); char *pg_strdup(const char *s); -void *pg_malloc(int size); +void *pg_malloc(size_t size); +void *pg_realloc(void *ptr, size_t size); void pg_free(void *ptr); const char *getErrorText(int errNum); unsigned int str2uint(const char *str); |