Just use an ANSI declaration, instead.

This commit is contained in:
Ben Laurie 1999-04-15 10:10:21 +00:00
parent c1cf1eecdb
commit 28db340142

View File

@ -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);
}