aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/cversion.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/cversion.c
parent3edd7ed15de229230f74c79c3d71e7c9c674cf4f (diff)
downloadopenssl-6b691a5c85ddc4e407e32781841fee5c029506cd.tar.gz
Change functions to ANSI C.
Diffstat (limited to 'crypto/cversion.c')
-rw-r--r--crypto/cversion.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/cversion.c b/crypto/cversion.c
index 3933a0c37a..8d18a95dfc 100644
--- a/crypto/cversion.c
+++ b/crypto/cversion.c
@@ -62,8 +62,7 @@
#include "crypto.h"
#include "date.h"
-const char *SSLeay_version(t)
-int t;
+const char *SSLeay_version(int t)
{
if (t == SSLEAY_VERSION)
return OPENSSL_VERSION_TEXT;
@@ -103,7 +102,7 @@ int t;
return("not available");
}
-unsigned long SSLeay()
+unsigned long SSLeay(void)
{
return(SSLEAY_VERSION_NUMBER);
}