summaryrefslogtreecommitdiff
path: root/ext/digest
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2022-01-18 09:01:03 -0500
committerPeter Zhu <[email protected]>2022-01-18 09:52:15 -0500
commitffda21b7ba451b8fd874e9c8c2162c55053caa1e ()
tree0acbf6b73b7d5c1f6e175a6ac7fb087aad3baf1a /ext/digest
parent54568c949b587f1e71ac38a478696f5c872bb643 (diff)
[Feature #18491] Drop support for HP-UX
IA64 support was dropped in ticket #15894, so we can drop support for HP-UX.
Notes: Merged: https://.com/ruby/ruby/pull/5457
-rw-r--r--ext/digest/sha2/sha2.c2
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ typedef u_int64_t sha2_word64; /* Exactly 8 bytes */
#define SHA512_SHORT_BLOCK_LENGTH (SHA512_BLOCK_LENGTH - 16)
-#if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || defined(__GNUC__) || defined(_HPUX_SOURCE) || defined(__IBMC__)
#define ULL(number) number##ULL
#else
#define ULL(number) (uint64_t)(number)