update for HEAD-2003021201
[reactos.git] / lib / msvcrt / string / strlen.c
index 808d96c..ebac5d7 100644 (file)
@@ -1,10 +1,11 @@
 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
 #include <msvcrt/string.h>
 
-size_t
-strlen(const char *str)
+#pragma function(strlen)
+
+size_t strlen(const char* str)
 {
-  const char *s;
+  const chars;
 
   if (str == 0)
     return 0;