Change #include filenames from <foo.h> to <openssl.h>.
[openssl.git] / crypto / evp / m_mdc2.c
index 64a853eb7f2cdf04208a092a6d13779bd593367c..2e5962860e35f89457ed770c65d4f0dc5509f7bb 100644 (file)
@@ -58,9 +58,9 @@
 
 #include <stdio.h>
 #include "cryptlib.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
 
 static EVP_MD mdc2_md=
        {
@@ -75,7 +75,7 @@ static EVP_MD mdc2_md=
        sizeof(EVP_MD *)+sizeof(MDC2_CTX),
        };
 
-EVP_MD *EVP_mdc2()
+EVP_MD *EVP_mdc2(void)
        {
        return(&mdc2_md);
        }