update for HEAD-2003091401
[reactos.git] / lib / ntdll / string / strchr.c
diff --git a/lib/ntdll/string/strchr.c b/lib/ntdll/string/strchr.c
deleted file mode 100644 (file)
index 4489403..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-
-
-
-char *strchr(const char *s, int c);
-
-char *strchr(const char *s, int c)
-{
-  char cc = c;
-  while (*s)
-  {
-    if (*s == cc)
-      return (char *)s;
-    s++;
-  }
-  if (cc == 0)
-    return (char *)s;
-  return 0;
-}
-