From: Ben Laurie Date: Thu, 15 Apr 1999 10:10:21 +0000 (+0000) Subject: Just use an ANSI declaration, instead. X-Git-Tag: OpenSSL_0_9_3beta1~330 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=28db340142f33f08370a51e010f262c1bf4462ae Just use an ANSI declaration, instead. --- diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index baf16deb11..f53d688d89 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -812,12 +812,7 @@ int n; return(NULL); } -#ifndef NOPROTO -static int sk_comp_cmp(SSL_COMP **a,SSL_COMP **b); -#endif - -static int sk_comp_cmp(a,b) -SSL_COMP **a,**b; +static int sk_comp_cmp(SSL_COMP **a,SSL_COMP **b) { return((*a)->id-(*b)->id); }