From e10b44c2a67db9b3ec5ba81fbc05164ee38321c2 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sun, 17 Jun 2007 00:37:00 +0000 Subject: [PATCH] * include/string.h (strcasecmp): Fix typo in declaration prototype. --- winsup/mingw/ChangeLog | 4 ++++ winsup/mingw/include/string.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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);}