1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Remove %qd.

This commit is contained in:
Bruce Momjian
1998-09-11 16:43:26 +00:00
parent 13b6f724c1
commit 28834b7226
3 changed files with 1 additions and 46 deletions

View File

@@ -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);