summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2014-05-29 14:39:26 +1000
committerTony Cook <tony@develop-help.com>2014-05-29 14:39:26 +1000
commit0d3bd0a9e4912968103ee87e4bb695080725fbf8 (patch)
treea3a6a7f1910f9b1ad8ca49c2d88f8c2025e3ff6a /handy.h
parentc2de4d02ec9abcb746fff0e08aa79b17a217dbfa (diff)
downloadperl-0d3bd0a9e4912968103ee87e4bb695080725fbf8.tar.gz
Make UINT64_C()/INT64_C() available anytime HAS_QUAD is defined
Prevent the failure for 32-bit builds on C89 compilers introduced in f4e3fd268af3.
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index 8a7bf46ac8..996f6b45a8 100644
--- a/handy.h
+++ b/handy.h
@@ -196,7 +196,7 @@ typedef U64TYPE U64;
/* INT64_C/UINT64_C are C99 from <stdint.h> (so they will not be
* available in strict C89 mode), but they are nice, so let's define
* them if necessary. */
-#if defined(HAS_QUAD) && defined(USE_64_BIT_INT)
+#if defined(HAS_QUAD)
# undef PeRl_INT64_C
# undef PeRl_UINT64_C
/* Prefer the native integer types (int and long) over long long