From ccada2421b4730978299e80a713e9a02d3ba13bf Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Mon, 24 Jul 2000 11:09:37 +0000 Subject: [PATCH] *** empty log message *** --- Modules/cmathmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index b6a65857610..70f427880d5 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -36,9 +36,9 @@ static Py_complex c_pi2 = {M_PI/2., 0.}; #endif /* forward declarations */ -staticforward Py_complex c_log(); -staticforward Py_complex c_prodi(); -staticforward Py_complex c_sqrt(); +staticforward Py_complex c_log(Py_Complex); +staticforward Py_complex c_prodi(Py_Complex); +staticforward Py_complex c_sqrt(Py_Complex); static Py_complex c_acos(Py_complex x)