update for HEAD-2003021201
[reactos.git] / lib / msvcrt / string / memcmp.c
index 81371e0..95d3d25 100644 (file)
@@ -1,17 +1,16 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
 #include <msvcrt/string.h>
 
-int
-memcmp(const void *s1, const void *s2, size_t n)
-{
-  if (n != 0)
-  {
-    const unsigned char *p1 = s1, *p2 = s2;
+#pragma function(memcmp)
 
-    do {
-      if (*p1++ != *p2++)
-       return (*--p1 - *--p2);
-    } while (--n != 0);
-  }
-  return 0;
+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;
 }