diff options
author | miod <> | 2014-04-16 04:38:11 +0000 |
---|---|---|
committer | miod <> | 2014-04-16 04:38:11 +0000 |
commit | 5b16e4cac0c78b070c3386c568c7153987b478f6 (patch) | |
tree | 2b99adc12b8d0370fd553783fe3359d8d70330f1 /src/lib/libcrypto/md4 | |
parent | ee3114a29a78969f6101144226487c5e6a646188 (diff) | |
download | openbsd-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/md4')
-rw-r--r-- | src/lib/libcrypto/md4/md4.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/md4/md4.h b/src/lib/libcrypto/md4/md4.h index c3ed9b3f75..b241ea1e9b 100644 --- a/src/lib/libcrypto/md4/md4.h +++ b/src/lib/libcrypto/md4/md4.h | |||
@@ -79,16 +79,9 @@ extern "C" { | |||
79 | 79 | ||
80 | #if defined(__LP32__) | 80 | #if defined(__LP32__) |
81 | #define MD4_LONG unsigned long | 81 | #define MD4_LONG unsigned long |
82 | #elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) | 82 | #elif defined(__ILP64__) |
83 | #define MD4_LONG unsigned long | 83 | #define MD4_LONG unsigned long |
84 | #define MD4_LONG_LOG2 3 | 84 | #define MD4_LONG_LOG2 3 |
85 | /* | ||
86 | * _CRAY note. I could declare short, but I have no idea what impact | ||
87 | * does it have on performance on none-T3E machines. I could declare | ||
88 | * int, but at least on C90 sizeof(int) can be chosen at compile time. | ||
89 | * So I've chosen long... | ||
90 | * <appro@fy.chalmers.se> | ||
91 | */ | ||
92 | #else | 85 | #else |
93 | #define MD4_LONG unsigned int | 86 | #define MD4_LONG unsigned int |
94 | #endif | 87 | #endif |