Change functions to ANSI C.
[openssl.git] / crypto / rc2 / rc2ofb64.c
index 4f091674475d9b4ddb6ec820a956ee1a46e78f25..ef0e62fa1b8fd47fe471665102263353213016cd 100644 (file)
  * used.  The extra state information to record how much of the
  * 64bit block we have used is contained in *num;
  */
-void RC2_ofb64_encrypt(in, out, length, schedule, ivec, num)
-unsigned char *in;
-unsigned char *out;
-long length;
-RC2_KEY *schedule;
-unsigned char *ivec;
-int *num;
+void RC2_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
+            RC2_KEY *schedule, unsigned char *ivec, int *num)
        {
        register unsigned long v0,v1,t;
        register int n= *num;