]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/string.h (strcasecmp): Fix typo in declaration prototype.
authorChristopher Faylor <me@cgf.cx>
Sun, 17 Jun 2007 00:37:00 +0000 (00:37 +0000)
committerChristopher Faylor <me@cgf.cx>
Sun, 17 Jun 2007 00:37:00 +0000 (00:37 +0000)
winsup/mingw/ChangeLog
winsup/mingw/include/string.h

index cfbfaa5e1bf670ea62b5b7ea7b538c5f124890f8..1bc3de6bb8a19189edac5afaae50bf37154550e2 100644 (file)
@@ -1,3 +1,7 @@
+2007-06-16  Christopher Faylor  <me+cygwin@cgf.cx>
+
+       * include/string.h (strcasecmp): Fix typo in declaration prototype.
+
 2007-06-14  Danny Smith  <dannysmith@users.sourceforge.net>'
 
        * include/io.h (lseek64) : Add prototype.
index bc3d1753e7944889e9bf2231d6d1500a30831014..8f659277e3c48c2761d249345e09fe5be541287e 100644 (file)
@@ -99,7 +99,7 @@ strcasecmp (const char * __sz1, const char * __sz2)
 _CRTIMP int __cdecl    stricoll (const char*, const char*);
 _CRTIMP char* __cdecl  strlwr (char*);
 _CRTIMP int __cdecl    strnicmp (const char*, const char*, size_t);
-__CRT_INLINE int  __cdecl strncasecmp (const char *. const char *, size_t);
+__CRT_INLINE int  __cdecl strncasecmp (const char *, const char *, size_t);
 __CRT_INLINE int __cdecl
 strncasecmp (const char * __sz1, const char * __sz2, size_t __sizeMaxCompare)
   {return _strnicmp (__sz1, __sz2, __sizeMaxCompare);}
This page took 0.034377 seconds and 5 git commands to generate.