mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 15:32:40 +00:00
Fix missing _strnicmp on Linux.
svn path=/trunk/; revision=23394
This commit is contained in:
parent
899a4ac7b8
commit
5bcb07458e
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue