diff options
author | Ben Laurie <ben@openssl.org> | 1999-04-15 12:10:21 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-04-15 12:10:21 +0200 |
commit | 28db340142f33f08370a51e010f262c1bf4462ae (patch) | |
tree | d782c74cd5f8e52f353fe15ad8ed913d6335253b /ssl | |
parent | /* Just some comments. */ (diff) | |
download | openssl-28db340142f33f08370a51e010f262c1bf4462ae.tar.xz openssl-28db340142f33f08370a51e010f262c1bf4462ae.zip |
Just use an ANSI declaration, instead.
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/ssl_ciph.c | 7 |
1 files changed, 1 insertions, 6 deletions
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); } |