update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strcat.c
diff --git a/lib/crtdll/string/strcat.c b/lib/crtdll/string/strcat.c
deleted file mode 100644 (file)
index 9f8a8ac..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-
-char* strcat(char* s, const char* append)
-{
-    char* save = s;
-
-    for (; *s; ++s);
-        while ((*s++ = *append++));
-    return save;
-}