Add prototype for strcasestr in compat library.
This commit is contained in:
parent
afec07732a
commit
25275f1c9d
|
@ -94,6 +94,10 @@ size_t strlcpy(char *dst, const char *src, size_t siz);
|
||||||
size_t strlcat(char *dst, const char *src, size_t siz);
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_STRCASESTR
|
||||||
|
char *strcasestr(const char *, const char *);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_SETENV
|
#ifndef HAVE_SETENV
|
||||||
int setenv(register const char *name, register const char *value, int rewrite);
|
int setenv(register const char *name, register const char *value, int rewrite);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue