Commit 4fc3b068 authored by Bruce Momjian's avatar Bruce Momjian

Remove lld from LONG LONG name

parent b3e72e51
...@@ -573,7 +573,7 @@ main() { ...@@ -573,7 +573,7 @@ main() {
AC_MSG_RESULT(no), AC_MSG_RESULT(no),
AC_MSG_RESULT(assuming not on target machine)) AC_MSG_RESULT(assuming not on target machine))
AC_MSG_CHECKING(whether 'long long int' is 64 bits using %lld) AC_MSG_CHECKING(whether 'long long int' is 64 bits)
AC_TRY_RUN([#include <stdio.h> AC_TRY_RUN([#include <stdio.h>
typedef long long int int64; typedef long long int int64;
#define INT64_FORMAT "%lld" #define INT64_FORMAT "%lld"
...@@ -606,7 +606,7 @@ int does_int64_work() ...@@ -606,7 +606,7 @@ int does_int64_work()
main() { main() {
exit(! does_int64_work()); exit(! does_int64_work());
}], }],
[AC_DEFINE(HAVE_LONG_LONG_INT_64_lld) AC_MSG_RESULT(yes)], [AC_DEFINE(HAVE_LONG_LONG_INT_64) AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no), AC_MSG_RESULT(no),
AC_MSG_RESULT(assuming not on target machine)) AC_MSG_RESULT(assuming not on target machine))
......
...@@ -223,7 +223,7 @@ extern void srandom(int seed); ...@@ -223,7 +223,7 @@ extern void srandom(int seed);
#undef HAVE_LONG_INT_64 #undef HAVE_LONG_INT_64
/* Set to 1 if type "long long int" works and is 64 bits */ /* 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
/* /*
* Code below this point should not require changes * Code below this point should not require changes
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: int8.h,v 1.7 1998/09/11 16:43:26 momjian Exp $ * $Id: int8.h,v 1.8 1998/09/11 17:16:11 momjian Exp $
* *
* NOTES * NOTES
* These data types are supported on all 64-bit architectures, and may * These data types are supported on all 64-bit architectures, and may
...@@ -29,7 +29,7 @@ typedef long int int64; ...@@ -29,7 +29,7 @@ typedef long int int64;
#define INT64_FORMAT "%ld" #define INT64_FORMAT "%ld"
#else #else
#ifdef HAVE_LONG_LONG_INT_64_lld #ifdef HAVE_LONG_LONG_INT_64
/* We have working support for "long long int", use that */ /* We have working support for "long long int", use that */
typedef long long int int64; typedef long long int int64;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment