summaryrefslogtreecommitdiffstats
path: root/crypto/evp/c_all.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
commit6b691a5c85ddc4e407e32781841fee5c029506cd (patch)
tree436f1127406e1cacfe83dfcbfff824d89c47d834 /crypto/evp/c_all.c
parent3edd7ed15de229230f74c79c3d71e7c9c674cf4f (diff)
Change functions to ANSI C.
Diffstat (limited to 'crypto/evp/c_all.c')
-rw-r--r--crypto/evp/c_all.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/evp/c_all.c b/crypto/evp/c_all.c
index 51f7aba805..edaeda8598 100644
--- a/crypto/evp/c_all.c
+++ b/crypto/evp/c_all.c
@@ -62,13 +62,13 @@
#include "pkcs12.h"
#include "objects.h"
-void SSLeay_add_all_algorithms()
+void SSLeay_add_all_algorithms(void)
{
SSLeay_add_all_ciphers();
SSLeay_add_all_digests();
}
-void SSLeay_add_all_ciphers()
+void SSLeay_add_all_ciphers(void)
{
#ifndef NO_DES
EVP_add_cipher(EVP_des_cfb());
@@ -153,7 +153,7 @@ void SSLeay_add_all_ciphers()
}
-void SSLeay_add_all_digests()
+void SSLeay_add_all_digests(void)
{
#ifndef NO_MD2
EVP_add_digest(EVP_md2());