diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/c.h | 2 | ||||
-rw-r--r-- | src/include/pg_config.h.in | 6 | ||||
-rw-r--r-- | src/include/pg_config.h.win32 | 3 |
3 files changed, 0 insertions, 11 deletions
diff --git a/src/include/c.h b/src/include/c.h index d752cc07dcc..16b428daa14 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -1203,7 +1203,6 @@ typedef union PGAlignedXLogBlock extern int fdatasync(int fildes); #endif -#ifdef HAVE_LONG_LONG_INT /* Older platforms may provide strto[u]ll functionality under other names */ #if !defined(HAVE_STRTOLL) && defined(HAVE___STRTOLL) #define strtoll __strtoll @@ -1232,7 +1231,6 @@ extern long long strtoll(const char *str, char **endptr, int base); #if defined(HAVE_STRTOULL) && !HAVE_DECL_STRTOULL extern unsigned long long strtoull(const char *str, char **endptr, int base); #endif -#endif /* HAVE_LONG_LONG_INT */ #if !defined(HAVE_MEMMOVE) && !defined(memmove) #define memmove(d, s, c) bcopy(s, d, c) diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 939245db396..2bf506033df 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -383,9 +383,6 @@ /* Define to 1 if `long int' works and is 64 bits. */ #undef HAVE_LONG_INT_64 -/* Define to 1 if the system has the type `long long int'. */ -#undef HAVE_LONG_LONG_INT - /* Define to 1 if `long long int' works and is 64 bits. */ #undef HAVE_LONG_LONG_INT_64 @@ -684,9 +681,6 @@ /* Define to 1 if you have the `unsetenv' function. */ #undef HAVE_UNSETENV -/* Define to 1 if the system has the type `unsigned long long int'. */ -#undef HAVE_UNSIGNED_LONG_LONG_INT - /* Define to 1 if you have the `uselocale' function. */ #undef HAVE_USELOCALE diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 36e6bdc3031..6b67fb06308 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -267,9 +267,6 @@ /* Define to 1 if `long int' works and is 64 bits. */ /* #undef HAVE_LONG_INT_64 */ -/* Define to 1 if the system has the type `long long int'. */ -#define HAVE_LONG_LONG_INT 1 - /* Define to 1 if `long long int' works and is 64 bits. */ #define HAVE_LONG_LONG_INT_64 1 |