update for HEAD-2003091401
[reactos.git] / lib / ntdll / string / strrchr.c
diff --git a/lib/ntdll/string/strrchr.c b/lib/ntdll/string/strrchr.c
deleted file mode 100644 (file)
index e6f3399..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 */
-#include <string.h>
-//#include <libc/unconst.h>
-
-char *
-strrchr(const char *s, int c)
-{
-  char cc = c;
-  const char *sp=(char *)0;
-  while (*s)
-  {
-    if (*s == cc)
-      sp = s;
-    s++;
-  }
-  if (cc == 0)
-    sp = s;
-  return (char *)sp;
-}
-