Change #include filenames from <foo.h> to <openssl.h>.
[openssl.git] / crypto / ripemd / rmd160.c
index 3fa1b8096e0ef1e675c4e6525c38e6ed676e1481..d73a9a6225e4cba181ac294581747199f9b0a1e9 100644 (file)
@@ -58,7 +58,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "ripemd.h"
+#include <openssl/ripemd.h>
 
 #define BUFSIZE        1024*16
 
 
 #define BUFSIZE        1024*16
 
@@ -72,9 +72,7 @@ void pt();
 int read();
 #endif
 
 int read();
 #endif
 
-int main(argc, argv)
-int argc;
-char **argv;
+int main(int argc, char **argv)
        {
        int i,err=0;
        FILE *IN;
        {
        int i,err=0;
        FILE *IN;
@@ -102,8 +100,7 @@ char **argv;
        exit(err);
        }
 
        exit(err);
        }
 
-void do_fp(f)
-FILE *f;
+void do_fp(FILE *f)
        {
        RIPEMD160_CTX c;
        unsigned char md[RIPEMD160_DIGEST_LENGTH];
        {
        RIPEMD160_CTX c;
        unsigned char md[RIPEMD160_DIGEST_LENGTH];
@@ -123,8 +120,7 @@ FILE *f;
        pt(md);
        }
 
        pt(md);
        }
 
-void pt(md)
-unsigned char *md;
+void pt(unsigned char *md)
        {
        int i;
 
        {
        int i;