Change #include filenames from <foo.h> to <openssl.h>.
[openssl.git] / crypto / rc2 / rc2test.c
index 9d0f8016ec4e02a3c6c376328635704052ca1f8d..a5658479584f7dd227390505c84e2a865675baa7 100644 (file)
@@ -62,7 +62,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
-#include "rc2.h"
+#include <openssl/rc2.h>
 
 unsigned char RC2key[4][16]={
        {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
@@ -135,9 +135,7 @@ static char *pt();
 
 #endif
 
-int main(argc,argv)
-int argc;
-char *argv[];
+int main(int argc, char *argv[])
        {
        int i,n,err=0;
        RC2_KEY key; 
@@ -208,8 +206,7 @@ char *argv[];
        }
 
 #ifdef undef
-static int cfb64_test(cfb_cipher)
-unsigned char *cfb_cipher;
+static int cfb64_test(unsigned char *cfb_cipher)
         {
         IDEA_KEY_SCHEDULE eks,dks;
         int err=0,i,n;
@@ -247,8 +244,7 @@ unsigned char *cfb_cipher;
         return(err);
         }
 
-static char *pt(p)
-unsigned char *p;
+static char *pt(unsigned char *p)
        {
        static char bufs[10][20];
        static int bnum=0;