update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / memccpy.c
diff --git a/lib/crtdll/string/memccpy.c b/lib/crtdll/string/memccpy.c
deleted file mode 100644 (file)
index 42fd26b..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <msvcrt/string.h>
-
-
-void *
-_memccpy (void *to, const void *from,int c,size_t count)
-{
-       memcpy(to,from,count);
-       return memchr(to,c,count);
-}