EVP constification.
[openssl.git] / crypto / evp / m_sha1.c
index 6c4b6aa4835f41c3bcd28a2854d85561f0ed63c2..57a1ab0cceca5ab85d4f155d63689386c29bdeb4 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef NO_SHA
 #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=
        {
@@ -79,3 +80,4 @@ EVP_MD *EVP_sha1(void)
        {
        return(&sha1_md);
        }
+#endif