src/SDCCutil.c (pathEquivalent): defined but not used
[fw/sdcc] / src / SDCCutil.c
index 9d77b3894e76e25057ce7c820de2ce01781a422a..3cd6a0c8b8c7b9c515444c6f23b1ad794bd33f92 100644 (file)
@@ -133,22 +133,6 @@ pathCharsEquivalent(char c1, char c2)
 #endif
 }
 
-static bool
-pathEquivalent(const char *p1, const char *p2)
-{
-  while (*p1 != '\0' && *p2 != '\0')
-    {
-      if (pathCharsEquivalent (*p1, *p2) == FALSE)
-        {
-          break;
-        }
-      p1++;
-      p2++;
-    }
-
-  return *p1 == *p2;
-}
-
 static char
 pathCharTransform(char c)
 {