update for HEAD-2003021201
[reactos.git] / lib / crtdll / string / strchr.c
index 4489403..2e739a8 100644 (file)
@@ -1,10 +1,8 @@
 /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
+#include <msvcrt/string.h>
 
 
-
-char *strchr(const char *s, int c);
-
 char *strchr(const char *s, int c)
 {
   char cc = c;