]> git.gag.com Git - fw/sdcc/commitdiff
src/SDCCutil.c (pathEquivalent): defined but not used
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 12 Apr 2003 17:23:04 +0000 (17:23 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 12 Apr 2003 17:23:04 +0000 (17:23 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2517 4a8a32a2-be11-0410-ad9d-d568d2c75423

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)
 {