Change #include filenames from <foo.h> to <openssl.h>.
[openssl.git] / crypto / rc4 / rc4_enc.c
index 26da6d520cc534547b40418d551d2c2070704715..3256bea8cc86970aa5729d5a0583b521d29a0f38 100644 (file)
@@ -56,7 +56,7 @@
  * [including the GNU Public Licence.]
  */
 
-#include "rc4.h"
+#include <openssl/rc4.h>
 #include "rc4_locl.h"
 
 /* RC4 as implemented from a posting from
  * Date: Wed, 14 Sep 1994 06:35:31 GMT
  */
 
-void RC4(key, len, indata, outdata)
-RC4_KEY *key;
-unsigned long len;
-unsigned char *indata;
-unsigned char *outdata;
+void RC4(RC4_KEY *key, unsigned long len, unsigned char *indata,
+            unsigned char *outdata)
        {
         register RC4_INT *d;
         register RC4_INT x,y,tx,ty;