From 5b16e4cac0c78b070c3386c568c7153987b478f6 Mon Sep 17 00:00:00 2001 From: miod <> Date: Wed, 16 Apr 2014 04:38:11 +0000 Subject: Remove _CRAY references. Note that this pleads for the use of fixed-width types instead of choosing int or long depending upon what we think the architecture support. --- src/lib/libcrypto/md4/md4.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/lib/libcrypto/md4/md4.h') 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" { #if defined(__LP32__) #define MD4_LONG unsigned long -#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) +#elif defined(__ILP64__) #define MD4_LONG unsigned long #define MD4_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... - * - */ #else #define MD4_LONG unsigned int #endif -- cgit v1.2.3-55-g6feb