From: bernhardheld Date: Sat, 12 Apr 2003 17:23:04 +0000 (+0000) Subject: src/SDCCutil.c (pathEquivalent): defined but not used X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=72cf40557bdf2e62a452a851d2ba115149b57ba3;p=fw%2Fsdcc src/SDCCutil.c (pathEquivalent): defined but not used git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2517 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCutil.c b/src/SDCCutil.c index 9d77b389..3cd6a0c8 100644 --- a/src/SDCCutil.c +++ b/src/SDCCutil.c @@ -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) {