summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/longobject.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index ef3f332..b9935b0 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -350,6 +350,7 @@ long_format(aa, base)
return (object *)str;
}
+#if 0
/* Convert a string to a long int object, in a given base.
Base zero implies a default depending on the number.
External linkage: used in compile.c and stropmodule.c. */
@@ -361,6 +362,7 @@ long_scan(str, base)
{
return long_escan(str, (char **)NULL, base);
}
+#endif
object *
long_escan(str, pend, base)