aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md32_common.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-10-30 20:14:27 +0000
committerUlf Möller <ulf@openssl.org>2000-10-30 20:14:27 +0000
commit7db2fcaa816c657c2524f18ca91c02e46d715884 (patch)
treed9fae00f87915eae7570b2ad66a4f6e196a0551e /crypto/md32_common.h
parent7d09713d09f41778c92913d57a877a4eb1aebbfc (diff)
downloadopenssl-7db2fcaa816c657c2524f18ca91c02e46d715884.tar.gz
_lrotl() is a call to the C runtime library!
Diffstat (limited to 'crypto/md32_common.h')
-rw-r--r--crypto/md32_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h
index 1a404a458d..3d9f8d0349 100644
--- a/crypto/md32_common.h
+++ b/crypto/md32_common.h
@@ -179,7 +179,7 @@
*/
#undef ROTATE
#ifndef PEDANTIC
-# if defined(_MSC_VER)
+# if 0 /* defined(_MSC_VER) */
# define ROTATE(a,n) _lrotl(a,n)
# elif defined(__MWERKS__)
# if defined(__POWERPC__)