diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-24 11:17:40 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-24 11:17:40 (GMT) |
commit | eb61b6ebb60fec3cc8824be50a2d14b34e25d85d (patch) | |
tree | e2ff6b67582855a484b4d44377236796eb7c9ce8 /Modules/cmathmodule.c | |
parent | ccada2421b4730978299e80a713e9a02d3ba13bf (diff) | |
download | cpython-eb61b6ebb60fec3cc8824be50a2d14b34e25d85d.zip cpython-eb61b6ebb60fec3cc8824be50a2d14b34e25d85d.tar.gz cpython-eb61b6ebb60fec3cc8824be50a2d14b34e25d85d.tar.bz2 |
Fix typo in previous patch.
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r-- | Modules/cmathmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 70f4278..3c350bf 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) |