diff options
author | Tony Cook <tony@develop-help.com> | 2014-05-29 14:39:26 +1000 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2014-05-29 14:39:26 +1000 |
commit | 0d3bd0a9e4912968103ee87e4bb695080725fbf8 (patch) | |
tree | a3a6a7f1910f9b1ad8ca49c2d88f8c2025e3ff6a /handy.h | |
parent | c2de4d02ec9abcb746fff0e08aa79b17a217dbfa (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |