summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-04-15 10:10:21 +0000
committerBen Laurie <ben@openssl.org>1999-04-15 10:10:21 +0000
commit28db340142f33f08370a51e010f262c1bf4462ae (patch)
treed782c74cd5f8e52f353fe15ad8ed913d6335253b /ssl
parentc1cf1eecdb5df38791394eba032249df89efad79 (diff)
Just use an ANSI declaration, instead.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_ciph.c7
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);
}