summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-11-08 23:00:35 +0100
committerAndy Polyakov <appro@openssl.org>2013-11-08 23:09:26 +0100
commit5b98979712bf699c335160341d159acec6890829 (patch)
tree4a62dc3d7408e127f6bcfd07777ad104c7d52c23 /engines
parent9abbf5cce73199bbe5b0d1cfc98f6fa6e667501a (diff)
engines/ccgost/gost89.h: make word32 defintion unconditional.
Original definition depended on __LONG_MAX__ that is not guaranteed to be present. As we don't support platforms with int narrower that 32 bits it's appropriate to make defition inconditional. PR: 3165 (cherry picked from commit 96180cac04591abfe50fc86096365553484bde65)
Diffstat (limited to 'engines')
-rw-r--r--engines/ccgost/gost89.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/ccgost/gost89.h b/engines/ccgost/gost89.h
index 2157852519..8da2407b03 100644
--- a/engines/ccgost/gost89.h
+++ b/engines/ccgost/gost89.h
@@ -87,10 +87,6 @@ extern gost_subst_block Gost28147_CryptoProParamSetB;
extern gost_subst_block Gost28147_CryptoProParamSetC;
extern gost_subst_block Gost28147_CryptoProParamSetD;
extern const byte CryptoProKeyMeshingKey[];
-#if __LONG_MAX__ > 2147483647L
typedef unsigned int word32;
-#else
-typedef unsigned long word32;
-#endif
#endif