|
Message-Id: <20170703162402.19886-1-amonakov@ispras.ru> Date: Mon, 3 Jul 2017 19:24:02 +0300 From: Alexander Monakov <amonakov@...ras.ru> To: musl@...ts.openwall.com Subject: [PATCH] remove useless declarations in string.h The two functions str{,n}casecmp_l are specified to be declared in <strings.h> which is already included from <string.h> under _GNU_SOURCE. --- include/string.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/string.h b/include/string.h index ff9badb9..ce1dc300 100644 --- a/include/string.h +++ b/include/string.h @@ -87,8 +87,6 @@ size_t strlcpy (char *, const char *, size_t); #ifdef _GNU_SOURCE #define strdupa(x) strcpy(alloca(strlen(x)+1),x) int strverscmp (const char *, const char *); -int strcasecmp_l (const char *, const char *, locale_t); -int strncasecmp_l (const char *, const char *, size_t, locale_t); char *strchrnul(const char *, int); char *strcasestr(const char *, const char *); void *memmem(const void *, size_t, const void *, size_t); -- 2.11.0
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.