]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/index.c.patch
Libc-391.tar.gz
[apple/libc.git] / string / FreeBSD / index.c.patch
diff --git a/string/FreeBSD/index.c.patch b/string/FreeBSD/index.c.patch
deleted file mode 100644 (file)
index 739b1e0..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
---- index.c.orig       Tue May 20 15:23:54 2003
-+++ index.c    Tue Dec 16 00:58:24 2003
-@@ -52,8 +52,9 @@
- #endif
- (const char *p, int ch)
- {
-+      char c = ch;
-       for (;; ++p) {
--              if (*p == ch)
-+              if (*p == c)
-                       return ((char *)p);
-               if (*p == '\0')
-                       return (NULL);