X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fcversion.c;h=297f8843f58586803ea450af2e1be417186bbbc4;hp=3933a0c37a1a8ed1f6febbbaa3ecdd2fcfaa12bc;hb=6e2dad1cc761cf222dbfb4bdbb262205a57777e9;hpb=e778802f53c8d47e96a6e4cbc776eb6e1d4c461a diff --git a/crypto/cversion.c b/crypto/cversion.c index 3933a0c37a..297f8843f5 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -59,11 +59,11 @@ #include #include #include "cryptlib.h" -#include "crypto.h" -#include "date.h" +#include -const char *SSLeay_version(t) -int t; +#include "buildinf.h" + +const char *SSLeay_version(int t) { if (t == SSLEAY_VERSION) return OPENSSL_VERSION_TEXT; @@ -73,7 +73,7 @@ int t; static char buf[sizeof(DATE)+11]; sprintf(buf,"built on: %s",DATE); - return(buf); + return(buf); #else return("built on: date not available"); #endif @@ -103,7 +103,7 @@ int t; return("not available"); } -unsigned long SSLeay() +unsigned long SSLeay(void) { return(SSLEAY_VERSION_NUMBER); }