Change the command line options of mkerr.pl so -static is now default and
[oweals/openssl.git] / crypto / evp / m_sha1.c
index 87135a9cf21d27204ff5cd397c4eb205c79febeb..5d5480659dcc0317590849f8fc480e9704581130 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 sha1_md=
        {
@@ -75,7 +75,7 @@ static EVP_MD sha1_md=
        sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_sha1()
+EVP_MD *EVP_sha1(void)
        {
        return(&sha1_md);
        }