aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2015-02-14 20:03:39 -0600
committerBrent Cook <busterb@gmail.com>2015-02-14 20:03:39 -0600
commitad7ac48d030b5ba7b8449bf3621b817affe3190f (patch)
tree5cf7743e8f68f5a5613653e66ec5212254002a71 /include
parent28311d4355e38376dc7ebcf1d2d7957718f55359 (diff)
downloadportable-ad7ac48d030b5ba7b8449bf3621b817affe3190f.tar.gz
portable-ad7ac48d030b5ba7b8449bf3621b817affe3190f.tar.bz2
portable-ad7ac48d030b5ba7b8449bf3621b817affe3190f.zip
add strsep fallback for libtls
Diffstat (limited to 'include')
-rw-r--r--include/string.h4
1 files changed, 4 insertions, 0 deletions
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);
33#endif 33#endif
34#endif 34#endif
35 35
36#ifndef HAVE_STRSEP
37char *strsep(char **stringp, const char *delim);
38#endif
39
36#ifndef HAVE_EXPLICIT_BZERO 40#ifndef HAVE_EXPLICIT_BZERO
37void explicit_bzero(void *, size_t); 41void explicit_bzero(void *, size_t);
38#endif 42#endif