From: Thomas Wouters Date: Mon, 24 Jul 2000 11:17:40 +0000 (+0000) Subject: Fix typo in previous patch. X-Git-Tag: v2.0b1~746 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb61b6ebb60fec3cc8824be50a2d14b34e25d85d;p=thirdparty%2FPython%2Fcpython.git Fix typo in previous patch. --- diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 70f427880d5b..3c350bf242e0 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)