From a6f8bbcad9409c36ef9fdf596835d5aa8e24dd27 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 12 Jul 2000 15:14:12 +0000 Subject: [PATCH] Avoid the conflict between () and (void) --- crypto/engine/hw_atalla.c | 4 ++-- crypto/engine/hw_cswift.c | 4 ++-- crypto/engine/hw_ncipher.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crypto/engine/hw_atalla.c b/crypto/engine/hw_atalla.c index 28b8fac0e5..51a1680a06 100644 --- a/crypto/engine/hw_atalla.c +++ b/crypto/engine/hw_atalla.c @@ -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, diff --git a/crypto/engine/hw_cswift.c b/crypto/engine/hw_cswift.c index 48ba26ed97..87b6e216bc 100644 --- a/crypto/engine/hw_cswift.c +++ b/crypto/engine/hw_cswift.c @@ -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, diff --git a/crypto/engine/hw_ncipher.c b/crypto/engine/hw_ncipher.c index 9021c2c453..43a3330f55 100644 --- a/crypto/engine/hw_ncipher.c +++ b/crypto/engine/hw_ncipher.c @@ -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 */ -- 2.25.1