Avoid the conflict between () and (void)
This commit is contained in:
parent
9f10f9beeb
commit
a6f8bbcad9
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user