Fix missing _strnicmp on Linux.

svn path=/trunk/; revision=23394
This commit is contained in:
Eric Kohl 2006-07-31 20:20:10 +00:00
parent 899a4ac7b8
commit 5bcb07458e

View file

@ -272,6 +272,10 @@ int strncasecmp(const char *str1, const char *str2, size_t n);
# else
# define strncasecmp _strnicmp
# endif
#else
# ifndef HAVE__STRNICMP
# define _strnicmp strncasecmp
# endif
#endif /* !defined(HAVE_STRNCASECMP) */
#ifndef HAVE_STRERROR