diff options
author | miod <> | 2014-04-17 21:17:12 +0000 |
---|---|---|
committer | miod <> | 2014-04-17 21:17:12 +0000 |
commit | aa8f085033b21b0ec0b70c18909ba27ef8752e51 (patch) | |
tree | da9109a7546d5e98b8647a37cc675d8b776d00ad /src/lib/libcrypto/cast | |
parent | e3644ed49258ff4a399142bf4ed0a7ba5f9bf76a (diff) | |
download | openbsd-aa8f085033b21b0ec0b70c18909ba27ef8752e51.tar.gz openbsd-aa8f085033b21b0ec0b70c18909ba27ef8752e51.tar.bz2 openbsd-aa8f085033b21b0ec0b70c18909ba27ef8752e51.zip |
Get rid of MS Visual C compiler and Intel C compiler specific defines.
Diffstat (limited to 'src/lib/libcrypto/cast')
-rw-r--r-- | src/lib/libcrypto/cast/cast_lcl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libcrypto/cast/cast_lcl.h b/src/lib/libcrypto/cast/cast_lcl.h index e756021a33..cf0ca9e607 100644 --- a/src/lib/libcrypto/cast/cast_lcl.h +++ b/src/lib/libcrypto/cast/cast_lcl.h | |||
@@ -152,11 +152,7 @@ | |||
152 | *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \ | 152 | *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \ |
153 | *((c)++)=(unsigned char)(((l) )&0xff)) | 153 | *((c)++)=(unsigned char)(((l) )&0xff)) |
154 | 154 | ||
155 | #if defined(OPENSSL_SYS_WIN32) && defined(_MSC_VER) | ||
156 | #define ROTL(a,n) (_lrotl(a,n)) | ||
157 | #else | ||
158 | #define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>(32-(n)))) | 155 | #define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>(32-(n)))) |
159 | #endif | ||
160 | 156 | ||
161 | #define C_M 0x3fc | 157 | #define C_M 0x3fc |
162 | #define C_0 22L | 158 | #define C_0 22L |