summaryrefslogtreecommitdiff
path: root/lib/stdint_.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-07-02 09:15:08 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-07-02 09:15:08 +0000
commit001f33d47839ef8f6741726d12b530afea5d79f2 (patch)
tree6f10d07a9cb86913eeb01905f213ba4b3cb39a1c /lib/stdint_.h
parent2789dcc1b9b0a377a6368c5ee3e4432e43d8bb16 (diff)
downloadcoreutils-001f33d47839ef8f6741726d12b530afea5d79f2.tar.xz
(intmax_t, uintmax_t): Prefer long to long long if
both are 64 bits.
Diffstat (limited to 'lib/stdint_.h')
-rw-r--r--lib/stdint_.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdint_.h b/lib/stdint_.h
index 4e582911a..b2a53dafa 100644
--- a/lib/stdint_.h
+++ b/lib/stdint_.h
@@ -208,7 +208,7 @@
#undef intmax_t
#undef uintmax_t
-#if @HAVE_LONG_LONG_INT@
+#if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1
# define intmax_t long long int
# define uintmax_t unsigned long long int
#elif defined int64_t
@@ -434,7 +434,7 @@
#undef INTMAX_C
#undef UINTMAX_C
-#if @HAVE_LONG_LONG_INT@
+#if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1
# define INTMAX_C(x) x##LL
# define UINTMAX_C(x) x##ULL
#elif defined int64_t