summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/evp/m_null.c
diff options
context:
space:
mode:
authorbeck <beck@openbsd.org>1999-09-29 04:35:07 +0000
committerbeck <beck@openbsd.org>1999-09-29 04:35:07 +0000
commit913ec974266f8a62ab2e5ca34a31d6e6f75b3cf0 (patch)
tree62c001f84cb6413a049c5c811a08bfbe7c747b77 /lib/libcrypto/evp/m_null.c
parentfix byte counters; imain@netidea.com (diff)
downloadwireguard-openbsd-913ec974266f8a62ab2e5ca34a31d6e6f75b3cf0.tar.xz
wireguard-openbsd-913ec974266f8a62ab2e5ca34a31d6e6f75b3cf0.zip
OpenSSL 0.9.4 merge
Diffstat (limited to 'lib/libcrypto/evp/m_null.c')
-rw-r--r--lib/libcrypto/evp/m_null.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcrypto/evp/m_null.c b/lib/libcrypto/evp/m_null.c
index 6d80560df2e..e2dadf3dabc 100644
--- a/lib/libcrypto/evp/m_null.c
+++ b/lib/libcrypto/evp/m_null.c
@@ -58,11 +58,11 @@
#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 void function()
+static void function(void)
{
}
@@ -80,7 +80,7 @@ static EVP_MD null_md=
sizeof(EVP_MD *),
};
-EVP_MD *EVP_md_null()
+EVP_MD *EVP_md_null(void)
{
return(&null_md);
}