summaryrefslogtreecommitdiff
path: root/Modules/cmathmodule.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 11:17:40 +0000
committerThomas Wouters <thomas@python.org>2000-07-24 11:17:40 +0000
commit7e545a5638d103d301b4e61a2cbd240d0d1b58d5 (patch)
treee3a32f02de15c6e5ce6774b1cc579916bba9729f /Modules/cmathmodule.c
parent3346c504d1c616c8ac211719237f433ad99859c2 (diff)
downloadcpython-7e545a5638d103d301b4e61a2cbd240d0d1b58d5.tar.gz
Fix typo in previous patch.
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 70f427880d..3c350bf242 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(Py_Complex);
-staticforward Py_complex c_prodi(Py_Complex);
-staticforward Py_complex c_sqrt(Py_Complex);
+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)