From b76b87fdf53767d46f7364a6ef30a7a553a6b3c8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Fri, 1 Mar 2002 13:59:22 +0000 Subject: [PATCH] fix prototype Submitted by: Oscar Jacobsson --- crypto/engine/hw_aep.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/engine/hw_aep.c b/crypto/engine/hw_aep.c index 1bc37bbc72..5c5e8fcc00 100644 --- a/crypto/engine/hw_aep.c +++ b/crypto/engine/hw_aep.c @@ -83,8 +83,8 @@ typedef int pid_t; #define FAIL_TO_SW 0x10101010 -static int aep_init(); -static int aep_finish(); +static int aep_init(void); +static int aep_finish(void); static AEP_RV aep_get_connection(AEP_CONNECTION_HNDL_PTR hConnection); static AEP_RV aep_return_connection(AEP_CONNECTION_HNDL hConnection); @@ -334,7 +334,7 @@ static t_AEP_Finalize *p_AEP_Finalize = NULL; static t_AEP_SetBNCallBacks *p_AEP_SetBNCallBacks = NULL; /* (de)initialisation functions. */ -static int aep_init() +static int aep_init(void) { t_AEP_ModExp *p1; t_AEP_ModExpCrt *p2; @@ -419,7 +419,7 @@ static int aep_init() } -static int aep_finish() +static int aep_finish(void) { int to_return = 0, in_use; AEP_RV rv; -- 2.25.1