+wcscmp() as captive_reactos_wcscmp()
authorshort <>
Mon, 4 Nov 2002 09:00:35 +0000 (09:00 +0000)
committershort <>
Mon, 4 Nov 2002 09:00:35 +0000 (09:00 +0000)
ntoskrnl/rtl/wstring.c

index f449ca9..5e437e5 100644 (file)
@@ -134,8 +134,6 @@ wchar_t * wcschr(const wchar_t *str, wchar_t ch)
   return NULL;
 }
 
-#ifndef LIBCAPTIVE
-
 int wcscmp(const wchar_t *cs, const wchar_t *ct)
 {
   while (*cs != '\0' && *ct != '\0' && *cs == *ct)
@@ -146,8 +144,6 @@ int wcscmp(const wchar_t *cs, const wchar_t *ct)
   return *cs - *ct;
 }
 
-#endif /* LIBCAPTIVE */
-
 wchar_t* wcscpy(wchar_t* str1, const wchar_t* str2)
 {
    wchar_t* s = str1;