From: Collin Funk Date: Sat, 5 Jul 2025 04:29:25 +0000 (-0700) Subject: strncasecmp_l: Fix previous change. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7aec9c720bae15f8af0a276be7aff6c1865fd30a;p=thirdparty%2Fgnulib.git strncasecmp_l: Fix previous change. Suggested by Bruno Haible in: . * lib/strncasecmp_l.c: Include c-strcase.h unconditionally. Use #include "c-strcase.h" instead of #include . --- diff --git a/ChangeLog b/ChangeLog index b0c19f5622..692fa95acd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2025-07-04 Collin Funk + strncasecmp_l: Fix previous change. + Suggested by Bruno Haible in: + . + * lib/strncasecmp_l.c: Include c-strcase.h unconditionally. Use + #include "c-strcase.h" instead of #include . + strcasecmp_l: Fix previous change. Suggested by Bruno Haible in: . diff --git a/lib/strncasecmp_l.c b/lib/strncasecmp_l.c index 9e2594a5c9..9981b90fd7 100644 --- a/lib/strncasecmp_l.c +++ b/lib/strncasecmp_l.c @@ -23,9 +23,7 @@ #include #include -#if GNULIB_defined_locale_t -# include -#endif +#include "c-strcase.h" int strncasecmp_l (const char *s1, const char *s2, size_t n, locale_t locale)