summaryrefslogtreecommitdiffstats
path: root/Modules/cmathmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r--Modules/cmathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 313827b..aa21bc0 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -347,7 +347,7 @@ math_error()
static PyObject *
math_1(args, func)
PyObject *args;
- Py_complex (*func) Py_FPROTO((Py_complex));
+ Py_complex (*func)(Py_complex);
{
Py_complex x;
if (!PyArg_ParseTuple(args, "D", &x))