diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-16 04:38:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-16 04:38:12 +0000 |
commit | f261f8c7a543f0616e3caf90e2de2ebd192405cd (patch) | |
tree | b45314d10b688b6aeb9d7f7acfe5c4a78d127c3b /lib/libcrypto/bf | |
parent | 8f8c2d13b9aca02abf041c548b78bbff5c444dd2 (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/bf')
-rw-r--r-- | lib/libcrypto/bf/blowfish.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libcrypto/bf/blowfish.h b/lib/libcrypto/bf/blowfish.h index 65685f478c7..289c55b3af2 100644 --- a/lib/libcrypto/bf/blowfish.h +++ b/lib/libcrypto/bf/blowfish.h @@ -81,16 +81,9 @@ extern "C" { #if defined(__LP32__) #define BF_LONG unsigned long -#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) +#elif defined(__ILP64__) #define BF_LONG unsigned long #define BF_LONG_LOG2 3 -/* - * _CRAY note. I could declare short, but I have no idea what impact - * does it have on performance on none-T3E machines. I could declare - * int, but at least on C90 sizeof(int) can be chosen at compile time. - * So I've chosen long... - * <appro@fy.chalmers.se> - */ #else #define BF_LONG unsigned int #endif |