Remove redundant numlen.
authorRob Landley <rob@landley.net>
Thu, 30 Apr 2015 19:01:35 +0000 (14:01 -0500)
committerRob Landley <rob@landley.net>
Thu, 30 Apr 2015 19:01:35 +0000 (14:01 -0500)
lib/lib.c

index ab773b5..2f7d28f 100644 (file)
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -280,16 +280,6 @@ long atolx_range(char *numstr, long low, long high)
   return val;
 }
 
-int numlen(long l)
-{
-  int len = 0;
-  while (l) {
-     l /= 10;
-     len++;
-  }
-  return len;
-}
-
 int stridx(char *haystack, char needle)
 {
   char *off;