* include/string.h (strcasecmp): Fix typo in declaration prototype.

This commit is contained in:
Christopher Faylor 2007-06-17 00:37:00 +00:00
parent 4a2c88cdc7
commit e10b44c2a6
2 changed files with 5 additions and 1 deletions

View 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.

View 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);}