Change the command line options of mkerr.pl so -static is now default and
[oweals/openssl.git] / crypto / evp / m_dss.c
index 3549b1699c0d9fa1775a6fa13954ef290eefb4da..356b936a1c9c1815e3cb97afb710631b7aef811f 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 dsa_md=
        {
@@ -75,7 +75,7 @@ static EVP_MD dsa_md=
        sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_dss()
+EVP_MD *EVP_dss(void)
        {
        return(&dsa_md);
        }