summaryrefslogtreecommitdiffstats
path: root/Modules/audioop.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/audioop.c')
-rw-r--r--Modules/audioop.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 73612cb..08e8fd4 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -284,10 +284,7 @@ audioop_rms(PyObject *self, PyObject *args)
return PyInt_FromLong(val);
}
-static double _sum2(a, b, len)
- short *a;
- short *b;
- int len;
+static double _sum2(short *a, short *b, int len)
{
int i;
double sum = 0.0;
@@ -899,8 +896,7 @@ audioop_lin2lin(PyObject *self, PyObject *args)
}
static int
-gcd(a, b)
- int a, b;
+gcd(int a, int b)
{
while (b > 0) {
int tmp = a % b;
@@ -1344,7 +1340,7 @@ static PyMethodDef audioop_methods[] = {
};
DL_EXPORT(void)
-initaudioop()
+initaudioop(void)
{
PyObject *m, *d;
m = Py_InitModule("audioop", audioop_methods);