removed wcslen() implementation, it is now inline in wxchar.h

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-09-11 12:33:52 +00:00
parent f8d791e0a4
commit 70f2e88c6b

View File

@@ -108,15 +108,6 @@ bool WXDLLEXPORT wxOKlibc()
return TRUE;
}
#ifndef HAVE_WCSLEN
size_t WXDLLEXPORT wcslen(const wchar_t *s)
{
size_t len = 0;
while (s[len]) len++;
return len;
}
#endif
// ============================================================================
// printf() functions business
// ============================================================================