File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ main() {
573
573
AC_MSG_RESULT(no),
574
574
AC_MSG_RESULT(assuming not on target machine))
575
575
576
- AC_MSG_CHECKING(whether 'long long int' is 64 bits using %lld )
576
+ AC_MSG_CHECKING(whether 'long long int' is 64 bits)
577
577
AC_TRY_RUN([#include <stdio.h>
578
578
typedef long long int int64;
579
579
#define INT64_FORMAT "%lld"
@@ -606,7 +606,7 @@ int does_int64_work()
606
606
main() {
607
607
exit(! does_int64_work());
608
608
}],
609
- [AC_DEFINE(HAVE_LONG_LONG_INT_64_lld ) AC_MSG_RESULT(yes)],
609
+ [AC_DEFINE(HAVE_LONG_LONG_INT_64 ) AC_MSG_RESULT(yes)],
610
610
AC_MSG_RESULT(no),
611
611
AC_MSG_RESULT(assuming not on target machine))
612
612
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ extern void srandom(int seed);
223
223
#undef HAVE_LONG_INT_64
224
224
225
225
/* Set to 1 if type "long long int" works and is 64 bits */
226
- #undef HAVE_LONG_LONG_INT_64_lld
226
+ #undef HAVE_LONG_LONG_INT_64
227
227
228
228
/*
229
229
* Code below this point should not require changes
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: int8.h,v 1.7 1998/09/11 16:43:26 momjian Exp $
9
+ * $Id: int8.h,v 1.8 1998/09/11 17: 16:11 momjian Exp $
10
10
*
11
11
* NOTES
12
12
* These data types are supported on all 64-bit architectures, and may
@@ -29,7 +29,7 @@ typedef long int int64;
29
29
30
30
#define INT64_FORMAT "%ld"
31
31
#else
32
- #ifdef HAVE_LONG_LONG_INT_64_lld
32
+ #ifdef HAVE_LONG_LONG_INT_64
33
33
/* We have working support for "long long int", use that */
34
34
typedef long long int int64 ;
35
35
You can’t perform that action at this time.
0 commit comments