summaryrefslogtreecommitdiffstats
path: root/Modules/cmathmodule.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 11:09:37 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-24 11:09:37 (GMT)
commitccada2421b4730978299e80a713e9a02d3ba13bf (patch)
treef2ce5513c8260825b929f7bbfd1815dc6e55e7cd /Modules/cmathmodule.c
parent94d8fea62eb49fab7c673b764221020ab5ce7767 (diff)
downloadcpython-ccada2421b4730978299e80a713e9a02d3ba13bf.zip
cpython-ccada2421b4730978299e80a713e9a02d3ba13bf.tar.gz
cpython-ccada2421b4730978299e80a713e9a02d3ba13bf.tar.bz2
*** empty log message ***
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r--Modules/cmathmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index b6a6585..70f4278 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)