update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strcmp.c
diff --git a/lib/crtdll/string/strcmp.c b/lib/crtdll/string/strcmp.c
deleted file mode 100644 (file)
index 52d3448..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-
-int strcmp(const char* s1, const char* s2)
-{
-  while (*s1 == *s2)
-  {
-    if (*s1 == 0)
-      return 0;
-    s1++;
-    s2++;
-  }
-  return *(unsigned const char*)s1 - *(unsigned const char*)(s2);
-}