branch update for HEAD-2003091401
[reactos.git] / lib / ntdll / string / strcpy.c
diff --git a/lib/ntdll/string/strcpy.c b/lib/ntdll/string/strcpy.c
deleted file mode 100644 (file)
index cf77c54..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-char* strcpy(char *to, const char *from);
-
-char* strcpy(char *to, const char *from)
-{
-  char *save = to;
-
-  for (; (*to = *from); ++from, ++to);
-  return save;
-}