'make update'
[openssl.git] / crypto / evp / m_mdc2.c
index 64a853eb7f2cdf04208a092a6d13779bd593367c..2c7f1ae515a809051a000f85759b2c2c5851e8df 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef NO_MDC2
 #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 +76,8 @@ static EVP_MD mdc2_md=
        sizeof(EVP_MD *)+sizeof(MDC2_CTX),
        };
 
-EVP_MD *EVP_mdc2()
+EVP_MD *EVP_mdc2(void)
        {
        return(&mdc2_md);
        }
+#endif