Silence other fallbacks

This removes Clang warnings
This commit is contained in:
Konrad Borowski 2014-05-25 12:47:36 +02:00
parent 8769c06350
commit a983318501

View file

@ -817,6 +817,7 @@ static wchar_t *wcsdup_fallback(const wchar_t *in)
return out;
}
__attribute__((unused))
static int wcscasecmp_fallback(const wchar_t *a, const wchar_t *b)
{
if (*a == 0)
@ -834,6 +835,7 @@ static int wcscasecmp_fallback(const wchar_t *a, const wchar_t *b)
return wcscasecmp_fallback(a+1,b+1);
}
__attribute__((unused))
static int wcsncasecmp_fallback(const wchar_t *a, const wchar_t *b, size_t count)
{
if (count == 0)