Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-15 08:54:58 +0300
committerRichard Levitte <levitte@openssl.org>2002-12-15 08:54:58 +0300
commite851895f04a33e319d0b649a5dfef6584f1ed54e (patch)
treed0211293e6a688095fae565bb45489f9641327a8 /crypto/des
parenta2049ba3940fa05f52e5336f358df314a67900bb (diff)
Don't define macros in terms of asm() when __STRICT_ANSI is defined.
Diffstat (limited to 'crypto/des')
-rw-r--r--crypto/des/des_locl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/des_locl.h b/crypto/des/des_locl.h
index 1bd1eb983a..6f222474c9 100644
--- a/crypto/des/des_locl.h
+++ b/crypto/des/des_locl.h
@@ -162,7 +162,7 @@
#if defined(OPENSSL_SYS_WIN32) && defined(_MSC_VER)
#define ROTATE(a,n) (_lrotr(a,n))
-#elif defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) && !defined(NO_INLINE_ASM)
+#elif defined(__GNUC__) && __GNUC__>=2 && !defined(__STRICT_ANSI__) && !defined(NO_ASM) && !defined(NO_INLINE_ASM)
# if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__)
# define ROTATE(a,n) ({ register unsigned int ret; \
asm ("rorl %1,%0" \