diff options
author | Andy Polyakov <appro@openssl.org> | 1999-12-19 22:35:29 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 1999-12-19 22:35:29 +0100 |
commit | a7c5241f5f23bf8eeb41efd7f4932f9e1359a38d (patch) | |
tree | 91faf211edc31118dc5f7c5e897806a7ba70f9bb /crypto/md32_common.h | |
parent | Initial support for MacOS is now available (diff) | |
download | openssl-a7c5241f5f23bf8eeb41efd7f4932f9e1359a38d.tar.xz openssl-a7c5241f5f23bf8eeb41efd7f4932f9e1359a38d.zip |
Late break-in patch for MacOS support.
Diffstat (limited to 'crypto/md32_common.h')
-rw-r--r-- | crypto/md32_common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h index 8d9059f95a..470a8c3e51 100644 --- a/crypto/md32_common.h +++ b/crypto/md32_common.h @@ -183,11 +183,10 @@ # define ROTATE(a,n) _lrotl(a,n) # elif defined(__MWERKS__) # ifdef __POWERPC__ -# defined ROTATE(a,n) __rlwinm(a,n,0,31) +# define ROTATE(a,n) __rlwinm(a,n,0,31) # else # define ROTATE(a,n) __rol(a,n) # endif - B # elif defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) /* * Some GNU C inline assembler templates. Note that these are |