From ad7ac48d030b5ba7b8449bf3621b817affe3190f Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sat, 14 Feb 2015 20:03:39 -0600 Subject: add strsep fallback for libtls --- include/string.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/string.h b/include/string.h index c558a90..05d1ffc 100644 --- a/include/string.h +++ b/include/string.h @@ -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 -- cgit v1.2.3-55-g6feb