update for HEAD-2003091401
[reactos.git] / lib / ntdll / string / memcmp.c
diff --git a/lib/ntdll/string/memcmp.c b/lib/ntdll/string/memcmp.c
deleted file mode 100644 (file)
index 1c361a3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <string.h>
-
-int
-memcmp(const void *s1, const void *s2, size_t n)
-{
-  if (n != 0)
-  {
-    const unsigned char *p1 = s1, *p2 = s2;
-
-    do {
-      if (*p1++ != *p2++)
-       return (*--p1 - *--p2);
-    } while (--n != 0);
-  }
-  return 0;
-}