summaryrefslogtreecommitdiff
path: root/Objects/listobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index d403a5e329..d7d140f513 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -479,7 +479,11 @@ static object *cmpfunc;
static int
cmp(v, w)
+#ifdef __STDC__
+ void *v, *w;
+#else
char *v, *w;
+#endif
{
object *t, *res;
long i;