diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index cfbfaa5e1..1bc3de6bb 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,7 @@ +2007-06-16 Christopher Faylor + + * include/string.h (strcasecmp): Fix typo in declaration prototype. + 2007-06-14 Danny Smith ' * include/io.h (lseek64) : Add prototype. diff --git a/winsup/mingw/include/string.h b/winsup/mingw/include/string.h index bc3d1753e..8f659277e 100644 --- a/winsup/mingw/include/string.h +++ b/winsup/mingw/include/string.h @@ -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);}