branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strncat.c
diff --git a/lib/crtdll/string/strncat.c b/lib/crtdll/string/strncat.c
deleted file mode 100644 (file)
index be963b4..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-char *
-strncat(char *dst, const char *src, size_t n)
-{
-  if (n != 0)
-  {
-    char *d = dst;
-    const char *s = src;
-
-    while (*d != 0)
-      d++;
-    do {
-      if ((*d = *s++) == 0)
-       break;
-      d++;
-    } while (--n != 0);
-    *d = 0;
-  }
-  return dst;
-}