diff options
Diffstat (limited to 'src/lib/libcrypto/ripemd/rmd_locl.h')
-rw-r--r-- | src/lib/libcrypto/ripemd/rmd_locl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ripemd/rmd_locl.h b/src/lib/libcrypto/ripemd/rmd_locl.h index a1feccf7c1..d6ba02001a 100644 --- a/src/lib/libcrypto/ripemd/rmd_locl.h +++ b/src/lib/libcrypto/ripemd/rmd_locl.h | |||
@@ -58,16 +58,12 @@ | |||
58 | 58 | ||
59 | #include <stdlib.h> | 59 | #include <stdlib.h> |
60 | #include <string.h> | 60 | #include <string.h> |
61 | #include "ripemd.h" | 61 | #include <openssl/ripemd.h> |
62 | 62 | ||
63 | #define ULONG unsigned long | 63 | #define ULONG unsigned long |
64 | #define UCHAR unsigned char | 64 | #define UCHAR unsigned char |
65 | #define UINT unsigned int | 65 | #define UINT unsigned int |
66 | 66 | ||
67 | #ifdef NOCONST | ||
68 | #define const | ||
69 | #endif | ||
70 | |||
71 | #undef c2nl | 67 | #undef c2nl |
72 | #define c2nl(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ | 68 | #define c2nl(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ |
73 | l|=(((unsigned long)(*((c)++)))<<16), \ | 69 | l|=(((unsigned long)(*((c)++)))<<16), \ |