Some compilers are quite picky about non-void functions that don't return

anything.
This commit is contained in:
Richard Levitte 2002-12-06 08:50:06 +00:00
parent fa63a98ad8
commit 3dda0dd2a2
2 changed files with 2 additions and 0 deletions

View File

@ -222,6 +222,7 @@ end:
static int cb_exit(int ec)
{
EXIT(ec);
return(0); /* To keep some compilers quiet */
}
static void MS_CALLBACK dsa_cb(int p, int n, void *arg)

View File

@ -126,6 +126,7 @@ static unsigned char *ustrsep(char **p,const char *sep)
static int test1_exit(int ec)
{
EXIT(ec);
return(0); /* To keep some compilers quiet */
}
static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn,