diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-09-11 16:43:26 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-09-11 16:43:26 +0000 |
| commit | 28834b7226f496898c3e69d7e9a1164ae3c54d2a (patch) | |
| tree | 20ff96cfc6f1f510dbff03254b61eb440c98944c /src/include | |
| parent | 13b6f724c188a07213739ef5f499eb8b8a858441 (diff) | |
| download | postgresql-28834b7226f496898c3e69d7e9a1164ae3c54d2a.tar.gz | |
Remove %qd.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/config.h.in | 1 | ||||
| -rw-r--r-- | src/include/utils/int8.h | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index c4d118d6b4..f34baf6279 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -224,7 +224,6 @@ extern void srandom(int seed); /* Set to 1 if type "long long int" works and is 64 bits */ #undef HAVE_LONG_LONG_INT_64_lld -#undef HAVE_LONG_LONG_INT_64_qd /* * Code below this point should not require changes diff --git a/src/include/utils/int8.h b/src/include/utils/int8.h index 24177bee82..211a6efd5a 100644 --- a/src/include/utils/int8.h +++ b/src/include/utils/int8.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: int8.h,v 1.6 1998/09/10 05:36:00 momjian Exp $ + * $Id: int8.h,v 1.7 1998/09/11 16:43:26 momjian Exp $ * * NOTES * These data types are supported on all 64-bit architectures, and may @@ -35,12 +35,6 @@ typedef long long int int64; #define INT64_FORMAT "%lld" #else -#ifdef HAVE_LONG_LONG_INT_64_qd -/* We have working support for "long long int", use that */ -typedef long long int int64; - -#define INT64_FORMAT "%qd" -#else /* Won't actually work, but fall back to long int so that int8.c compiles */ typedef long int int64; @@ -48,7 +42,6 @@ typedef long int int64; #define INT64_IS_BUSTED #endif #endif -#endif extern int64 *int8in(char *str); extern char *int8out(int64 * val); |
