update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strlen.c
diff --git a/lib/crtdll/string/strlen.c b/lib/crtdll/string/strlen.c
deleted file mode 100644 (file)
index a2995f8..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-
-size_t strlen(const char* str)
-{
-  const char* s;
-
-  if (str == 0)
-    return 0;
-  for (s = str; *s; ++s);
-  return s-str;
-}
-