[BACK]Return to glob.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/gen/glob.c between version 1.13 and 1.14

version 1.13, 2005/09/13 21:38:03 version 1.14, 2005/11/29 03:11:59
Line 982  g_strchr(str, ch)
Line 982  g_strchr(str, ch)
   
         do {          do {
                 if (*str == ch)                  if (*str == ch)
                         /* LINTED this is libc's definition! */                          return __UNCONST(str);
                         return (Char *)str;  
         } while (*str++);          } while (*str++);
         return NULL;          return NULL;
 }  }

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

CVSweb <webmaster@jp.NetBSD.org>