mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 06:32:05 +03:00
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.
This commit is contained in:
parent
f3055e0163
commit
bd00cc8781
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user