summaryrefslogtreecommitdiffstats
path: root/Python/modsupport.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r--Python/modsupport.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index d998ad8..beb5c34 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -314,6 +314,8 @@ int getargs(va_alist) va_dcl
return ok;
}
+#ifdef UNUSED
+
int
getlongtuplearg(args, a, n)
object *args;
@@ -394,6 +396,8 @@ getshortlistarg(args, a, n)
return 1;
}
+#endif /* UNUSED */
+
/* Generic function to create a value -- the inverse of getargs() */
/* After an original idea and first implementation by Steven Miale */