X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=crypto%2Frc5%2Frc5_locl.h;fp=crypto%2Frc5%2Frc5_locl.h;h=658190940c91d7c8a6df05aea832890c310d0ed3;hb=6be4688bdc521e1a4fcf8a6ff4f479ec6f47c6b4;hp=c700dfb1a5ec7c41a33cfebae4b76148e91f2435;hpb=717c5cdcc79daf0c16c62828619da247de9236a7;p=openssl.git diff --git a/crypto/rc5/rc5_locl.h b/crypto/rc5/rc5_locl.h index c700dfb1a5..658190940c 100644 --- a/crypto/rc5/rc5_locl.h +++ b/crypto/rc5/rc5_locl.h @@ -166,8 +166,11 @@ ret; \ }) # endif -#else +#endif +#ifndef ROTATE_l32 #define ROTATE_l32(a,n) (((a)<<(n&0x1f))|(((a)&0xffffffff)>>(32-(n&0x1f)))) +#endif +#ifndef ROTATE_r32 #define ROTATE_r32(a,n) (((a)<<(32-(n&0x1f)))|(((a)&0xffffffff)>>(n&0x1f))) #endif