[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / string / tcscpy.h
diff --git a/reactos/lib/sdk/crt/string/tcscpy.h b/reactos/lib/sdk/crt/string/tcscpy.h
deleted file mode 100644 (file)
index f2fde0e..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#include <tchar.h>
-
-#ifdef _MSC_VER
-#pragma function(_tcscpy)
-#endif /* _MSC_VER */
-
-_TCHAR * _tcscpy(_TCHAR * to, const _TCHAR * from)
-{
- _TCHAR *save = to;
-
- for (; (*to = *from); ++from, ++to);
-
- return save;
-}