diff options
author | Alexander Monakov <amonakov@ispras.ru> | 2017-07-03 19:24:02 +0300 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2017-07-04 17:04:21 -0400 |
commit | bd00cc87819875882356298b6c6bdabc1700753f (patch) | |
tree | c9f106917cd16bd04357208228ffbfd120118d44 /include | |
parent | f3055e0163aad1cebb0867078643b36643c5d95f (diff) | |
download | musl-bd00cc87819875882356298b6c6bdabc1700753f.tar.gz musl-bd00cc87819875882356298b6c6bdabc1700753f.tar.xz musl-bd00cc87819875882356298b6c6bdabc1700753f.zip |
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.
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 2 |
1 files changed, 0 insertions, 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); |