Change functions to ANSI C.
[openssl.git] / crypto / rc2 / rc2_skey.c
index 0f1f25339592d55611f43a032bc4a85ea828df15..729387301813b54c4a3d14bf029aecf7ace779a9 100644 (file)
@@ -90,11 +90,7 @@ static unsigned char key_table[256]={
  * BSAFE uses the 'retarded' version.  What I previously shipped is
  * the same as specifying 1024 for the 'bits' parameter.  Bsafe uses
  * a version where the bits parameter is the same as len*8 */
-void RC2_set_key(key,len,data,bits)
-RC2_KEY *key;
-int len;
-unsigned char *data;
-int bits;
+void RC2_set_key(RC2_KEY *key, int len, unsigned char *data, int bits)
        {
        int i,j;
        unsigned char *k;