add strsep fallback for libtls

This commit is contained in:
Brent Cook
2015-02-14 20:03:39 -06:00
parent 28311d4355
commit ad7ac48d03
4 changed files with 16 additions and 2 deletions

View File

@@ -33,6 +33,10 @@ size_t strnlen(const char *str, size_t maxlen);
#endif
#endif
#ifndef HAVE_STRSEP
char *strsep(char **stringp, const char *delim);
#endif
#ifndef HAVE_EXPLICIT_BZERO
void explicit_bzero(void *, size_t);
#endif