summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ripemd
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2014-04-16 04:38:12 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2014-04-16 04:38:12 +0000
commitf261f8c7a543f0616e3caf90e2de2ebd192405cd (patch)
treeb45314d10b688b6aeb9d7f7acfe5c4a78d127c3b /lib/libcrypto/ripemd
parent8f8c2d13b9aca02abf041c548b78bbff5c444dd2 (diff)
Remove _CRAY references. Note that this pleads for the use of <stdint.h>
fixed-width types instead of choosing int or long depending upon what we think the architecture support.
Diffstat (limited to 'lib/libcrypto/ripemd')
-rw-r--r--lib/libcrypto/ripemd/ripemd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/ripemd/ripemd.h b/lib/libcrypto/ripemd/ripemd.h
index 5942eb61808..f32cfae3118 100644
--- a/lib/libcrypto/ripemd/ripemd.h
+++ b/lib/libcrypto/ripemd/ripemd.h
@@ -72,7 +72,7 @@ extern "C" {
#if defined(__LP32__)
#define RIPEMD160_LONG unsigned long
-#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__)
+#elif defined(__ILP64__)
#define RIPEMD160_LONG unsigned long
#define RIPEMD160_LONG_LOG2 3
#else