1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

* string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.

This commit is contained in:
Ulrich Drepper
2008-05-16 18:19:18 +00:00
parent 91c8a74b8b
commit 74e1338588
4 changed files with 9 additions and 2 deletions

View File

@@ -46,7 +46,7 @@
&& ((h_l) = (j) + (n_l)))
#define CANON_ELEMENT(c) TOLOWER (c)
#define CMP_FUNC(p1, p2, l) \
strncasecmp ((const char *) (p1), (const char *) (p2), l)
__strncasecmp ((const char *) (p1), (const char *) (p2), l)
#include "str-two-way.h"
#undef strcasestr