summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ripemd
diff options
context:
space:
mode:
authormiod <>2014-04-16 04:38:11 +0000
committermiod <>2014-04-16 04:38:11 +0000
commit5b16e4cac0c78b070c3386c568c7153987b478f6 (patch)
tree2b99adc12b8d0370fd553783fe3359d8d70330f1 /src/lib/libcrypto/ripemd
parentee3114a29a78969f6101144226487c5e6a646188 (diff)
downloadopenbsd-5b16e4cac0c78b070c3386c568c7153987b478f6.tar.gz
openbsd-5b16e4cac0c78b070c3386c568c7153987b478f6.tar.bz2
openbsd-5b16e4cac0c78b070c3386c568c7153987b478f6.zip
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 'src/lib/libcrypto/ripemd')
-rw-r--r--src/lib/libcrypto/ripemd/ripemd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ripemd/ripemd.h b/src/lib/libcrypto/ripemd/ripemd.h
index 5942eb6180..f32cfae311 100644
--- a/src/lib/libcrypto/ripemd/ripemd.h
+++ b/src/lib/libcrypto/ripemd/ripemd.h
@@ -72,7 +72,7 @@ extern "C" {
72 72
73#if defined(__LP32__) 73#if defined(__LP32__)
74#define RIPEMD160_LONG unsigned long 74#define RIPEMD160_LONG unsigned long
75#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) 75#elif defined(__ILP64__)
76#define RIPEMD160_LONG unsigned long 76#define RIPEMD160_LONG unsigned long
77#define RIPEMD160_LONG_LOG2 3 77#define RIPEMD160_LONG_LOG2 3
78#else 78#else