_lrotl and _lrotr are defined in MSVC but nowhere else that we know
[openssl.git] / crypto / rc5 / rc5ofb64.c
index aa43b6a820b6ee9a9c528dbdb8d9fc70a8bf9f08..fd2ecddf6ca4b5526fd9cb52a21f69c967243621 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include "rc5.h"
+#include <openssl/rc5.h>
 #include "rc5_locl.h"
 
 /* The input and output encrypted as though 64bit ofb mode is being
  * used.  The extra state information to record how much of the
  * 64bit block we have used is contained in *num;
  */
-void RC5_32_ofb64_encrypt(in, out, length, schedule, ivec, num)
-unsigned char *in;
-unsigned char *out;
-long length;
-RC5_32_KEY *schedule;
-unsigned char *ivec;
-int *num;
+void RC5_32_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
+            RC5_32_KEY *schedule, unsigned char *ivec, int *num)
        {
        register unsigned long v0,v1,t;
        register int n= *num;