update for HEAD-2003091401
[reactos.git] / lib / msvcrt / wstring / wcscmp.c
diff --git a/lib/msvcrt/wstring/wcscmp.c b/lib/msvcrt/wstring/wcscmp.c
deleted file mode 100644 (file)
index 4d5a48f..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-
-#include <msvcrt/string.h>
-
-int wcscmp(const wchar_t* cs,const wchar_t * ct)
-{
-  while (*cs == *ct)
-  {
-    if (*cs == 0)
-      return 0;
-    cs++;
-    ct++;
-  }
-  return *cs - *ct;
-}