diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/c.h | 3 | ||||
-rw-r--r-- | src/include/pg_config.h.in | 7 | ||||
-rw-r--r-- | src/include/pg_config.h.win32 | 8 |
3 files changed, 7 insertions, 11 deletions
diff --git a/src/include/c.h b/src/include/c.h index a48a57a42b3..2ceaaf6c1d7 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -288,6 +288,9 @@ typedef unsigned long long int uint64; #define UINT64CONST(x) ((uint64) x) #endif +/* snprintf format strings to use for 64-bit integers */ +#define INT64_FORMAT "%" INT64_MODIFIER "d" +#define UINT64_FORMAT "%" INT64_MODIFIER "u" /* Select timestamp representation (float8 or int64) */ #ifdef USE_INTEGER_DATETIMES diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 5bdfa470dcf..1ce37c8765b 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -653,8 +653,8 @@ /* Define to 1 if your compiler understands __VA_ARGS__ in macros. */ #undef HAVE__VA_ARGS -/* Define to the appropriate snprintf format for 64-bit ints. */ -#undef INT64_FORMAT +/* Define to the appropriate snprintf length modifier for 64-bit ints. */ +#undef INT64_MODIFIER /* Define to 1 if `locale_t' requires <xlocale.h>. */ #undef LOCALE_T_IN_XLOCALE @@ -744,9 +744,6 @@ /* Define to 1 if your <sys/time.h> declares `struct tm'. */ #undef TM_IN_SYS_TIME -/* Define to the appropriate snprintf format for unsigned 64-bit ints. */ -#undef UINT64_FORMAT - /* Define to 1 to build with assertion checks. (--enable-cassert) */ #undef USE_ASSERT_CHECKING diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 00be15f230e..bce67a2b492 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -532,8 +532,8 @@ /* Define to 1 if your compiler understands __VA_ARGS__ in macros. */ #define HAVE__VA_ARGS 1 -/* Define to the appropriate snprintf format for 64-bit ints, if any. */ -#define INT64_FORMAT "%lld" +/* Define to the appropriate snprintf length modifier for 64-bit ints. */ +#define INT64_MODIFIER "ll" /* Define to 1 if `locale_t' requires <xlocale.h>. */ /* #undef LOCALE_T_IN_XLOCALE */ @@ -604,10 +604,6 @@ /* Define to 1 if your <sys/time.h> declares `struct tm'. */ /* #undef TM_IN_SYS_TIME */ -/* Define to the appropriate snprintf format for unsigned 64-bit ints, if any. - */ -#define UINT64_FORMAT "%llu" - /* Define to 1 to build with assertion checks. (--enable-cassert) */ /* #undef USE_ASSERT_CHECKING */ |