summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/sha
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/sha
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/sha')
-rw-r--r--src/lib/libcrypto/sha/sha.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/sha/sha.h b/src/lib/libcrypto/sha/sha.h
index 7cbca26ff9..435352c208 100644
--- a/src/lib/libcrypto/sha/sha.h
+++ b/src/lib/libcrypto/sha/sha.h
@@ -79,7 +79,7 @@ extern "C" {
79 79
80#if defined(__LP32__) 80#if defined(__LP32__)
81#define SHA_LONG unsigned long 81#define SHA_LONG unsigned long
82#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) 82#elif defined(__ILP64__)
83#define SHA_LONG unsigned long 83#define SHA_LONG unsigned long
84#define SHA_LONG_LOG2 3 84#define SHA_LONG_LOG2 3
85#else 85#else