File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -573,10 +573,10 @@ 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 %Ld )
576
+ AC_MSG_CHECKING(whether 'long long int' is 64 bits using %lld )
577
577
AC_TRY_RUN([#include <stdio.h>
578
578
typedef long long int int64;
579
- #define INT64_FORMAT "%Ld "
579
+ #define INT64_FORMAT "%lld "
580
580
581
581
int64 a = 20000001;
582
582
int64 b = 40000005;
@@ -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_Ld ) AC_MSG_RESULT(yes)],
609
+ [AC_DEFINE(HAVE_LONG_LONG_INT_64_lld ) 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 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: int8.h,v 1.5 1998/09/10 03:27:09 momjian Exp $
9
+ * $Id: int8.h,v 1.6 1998/09/10 05:36:00 momjian Exp $
10
10
*
11
11
* NOTES
12
12
* These data types are supported on all 64-bit architectures, and may
@@ -29,11 +29,11 @@ typedef long int int64;
29
29
30
30
#define INT64_FORMAT "%ld"
31
31
#else
32
- #ifdef HAVE_LONG_LONG_INT_64_Ld
32
+ #ifdef HAVE_LONG_LONG_INT_64_lld
33
33
/* We have working support for "long long int", use that */
34
34
typedef long long int int64 ;
35
35
36
- #define INT64_FORMAT "%Ld "
36
+ #define INT64_FORMAT "%lld "
37
37
#else
38
38
#ifdef HAVE_LONG_LONG_INT_64_qd
39
39
/* We have working support for "long long int", use that */
You can’t perform that action at this time.
0 commit comments