Change the command line options of mkerr.pl so -static is now default and
[oweals/openssl.git] / crypto / evp / m_sha.c
index af4e434a2258348a672f0384a2f6f03f774c54e4..8213c36480ee83268ed154885c2e0dc91b199450 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 sha_md=
        {
@@ -75,7 +75,7 @@ static EVP_MD sha_md=
        sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_sha()
+EVP_MD *EVP_sha(void)
        {
        return(&sha_md);
        }