Commit a6f8bbca authored by Richard Levitte's avatar Richard Levitte
Browse files

Avoid the conflict between () and (void)

parent 9f10f9be
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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,
+2 −2
Original line number Diff line number Diff line
@@ -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,
+2 −2
Original line number Diff line number Diff line
@@ -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 */