Avoid the conflict between () and (void)

This commit is contained in:
Richard Levitte 2000-07-12 15:14:12 +00:00
parent 9f10f9beeb
commit a6f8bbcad9
3 changed files with 6 additions and 6 deletions

View File

@ -68,8 +68,8 @@
#include "vendor_defns/atalla.h"
static int atalla_init();
static int atalla_finish();
static int atalla_init(void);
static int atalla_finish(void);
/* BIGNUM stuff */
static int atalla_mod_exp(BIGNUM *r, BIGNUM *a, const BIGNUM *p,

View File

@ -80,8 +80,8 @@
*/
#include "vendor_defns/cswift.h"
static int cswift_init();
static int cswift_finish();
static int cswift_init(void);
static int cswift_finish(void);
/* BIGNUM stuff */
static int cswift_mod_exp(BIGNUM *r, BIGNUM *a, const BIGNUM *p,

View File

@ -78,8 +78,8 @@
*/
#include "vendor_defns/hwcryptohook.h"
static int hwcrhk_init();
static int hwcrhk_finish();
static int hwcrhk_init(void);
static int hwcrhk_finish(void);
static int hwcrhk_ctrl(int cmd, long i, void *p, void (*f)());
/* Functions to handle mutexes */