Add prototype for strcasestr in compat library.

This commit is contained in:
Darren Tucker 2016-12-13 12:54:23 +11:00
parent afec07732a
commit 25275f1c9d
1 changed files with 4 additions and 0 deletions

View File

@ -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);
#endif
#ifndef HAVE_STRCASESTR
char *strcasestr(const char *, const char *);
#endif
#ifndef HAVE_SETENV
int setenv(register const char *name, register const char *value, int rewrite);
#endif