update for HEAD-2003021201
[reactos.git] / lib / crtdll / string / strcspn.c
index 430182d..db77bb7 100644 (file)
@@ -1,8 +1,7 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/string.h>
+#include <msvcrt/string.h>
 
-size_t
-strcspn(const char *s1, const char *s2)
+size_t strcspn(const char *s1, const char *s2)
 {
   const char *p, *spanp;
   char c, sc;